Php mysql 常用代碼、CURD操作以及簡單查詢

來源:互聯網
上載者:User

標籤:

C/S:Client Server
B/S:Brower Server

php主要實現B/S

LAMP :Linux系統    A阿帕奇伺服器    Mysql資料庫   Php語言 

 

 

 

mysql常用代碼

建立表

1 create table CeShi12 (3        Uid varchar(50) primary key,4        Pwd varchar(50),5        Name varchar(50),6        Nation varchar(50),7        foreign key(Nation)  references Nation(Code)8 )

關係型資料庫:表和表之間是有關係存在的
建立表的幾個關鍵字:
1、主鍵:primary key
2、非空:not null
3、自增長列:auto_increment
4、外鍵關係:foreign key(列名) references 表名(列名)

 

CRUD操作:
1、添加資料:
insert into Info values(‘‘,‘‘,‘‘,‘‘,‘‘)//要求values括弧裡面的值得個數要和表裡面列數相同
insert into Info (Code,Name) values(‘‘,‘‘) 添加指定列的值

2、修改資料

update Info set Name=‘張三‘ where Code =‘p001‘

3、刪除資料
delete from Info where Code=‘p001‘

 

寫查詢語句需要注意:
1、建立表的時候,最後一列後面不要寫逗號。
2、如果有多條語句一起執行,注意在語句之前加分號分隔
3、寫代碼所有的符號都是半形額(英文狀態下)

 

1、普通查詢,差所有
select * from Info #差所有資料
select Code,Name from Info #查指定列

2、條件查詢:
select * from Info where Code=‘p001‘ #一個條件
select * from Info where Name=‘張三‘ and Nation =‘p001‘ #兩個條件並列的關係
select * from Info where Name=‘張三‘ or Nation =‘p001‘ #兩個條件或的關係

3、排序查詢
select * from Info order bu birthday # 預設升序排列asc 如果降序排列desc

select * from Car order by Brand,Oil desc # 多列排序

4、彙總函式
select count (*) from Info #取個數
select sum(Price) from Car #查詢Price列的和
select avg(Price) from Car #查詢price列的平均值
select max(Price) from Car #查詢price列的最大值
select min(Price) from Car #查詢price列的最小值

5、分頁查詢
select * from Car limit 0,5 #跳過n條資料取m條資料

6、分組查詢
select brand from group by brand #簡單分組查詢
select brand from group by brand having count(*)>2 #查詢系列裡面車的數量大於2的系列

7、去重查詢
select distinct brand from car

8、修改列名
select brand as ‘系列‘ from car

9、模糊查詢
select * from car where Name like ‘_迪%‘ %代表任意多個字元 _代表一個字元

10、離散查詢
select * from car where code in(‘c001‘,‘c002‘,‘c003‘,‘c004‘)
select * from car where code not in(‘c001‘,‘c002‘,‘c003‘,‘c004‘)

 

Php mysql 常用代碼、CURD操作以及簡單查詢

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.