PHP之Mysql常用SQL語(yǔ)句示例的深入分析
更新時(shí)間:2013年06月06日 09:37:20 作者:
本篇文章是對(duì)Mysql常用SQL語(yǔ)句進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
1.插入數(shù)據(jù)
insert into表名(列名1,列名2,列名..) values(值1,值2,值...);
2.更新數(shù)據(jù)
update 表名set列名1=值1,列名2=值2[where條件];
3.刪除數(shù)據(jù)
deletefrom表名[where條件];
4.查詢(xún)所有數(shù)據(jù)
select*from表名;select*from product;
5.查詢(xún)部份列
select列名1,列名2,列名N from表名;
6.條件查詢(xún)
# 比較 =, <, >, <=, >=, !=
7.查詢(xún)排序
select*from表名 order by列名排序方式;
8.限制查詢(xún)結(jié)果數(shù)量
select*from表名 limit 開(kāi)始記錄數(shù),結(jié)果數(shù)量;select*from product limit 5;
9.聚合函數(shù)
# count 總記錄數(shù)
10.子查詢(xún)
select name from student where age<(select avg(age)from student );
11.連接查詢(xún)
select s.username as stu_name, t.name as te_name from student s, teacher t where s.teacher_id=t.id;
insert into表名(列名1,列名2,列名..) values(值1,值2,值...);
insert into product(name, price, pic_path) values('Nike',500,'uploads/3245.jpg');
2.更新數(shù)據(jù)
update 表名set列名1=值1,列名2=值2[where條件];
update product set name='LiNing', price=50where id=2;
3.刪除數(shù)據(jù)
deletefrom表名[where條件];
deletefrom product where id=2;
4.查詢(xún)所有數(shù)據(jù)
select*from表名;select*from product;
5.查詢(xún)部份列
select列名1,列名2,列名N from表名;
select name, price from product;
6.條件查詢(xún)
# 比較 =, <, >, <=, >=, !=
select*from表名where列名=值;
select*from product where id=2;
# and 與
select*from表名where條件1and條件2and條件N;
select*from product where name='Nike'and price=50;
# or 或
select*from表名where條件1or條件2or條件N;
select*from product where name='Nike'or price>50;
# not 非
select*from表名wherenot條件1;
select*from product wherenot name='Nike';
#in 枚舉
select*from表名where列名in(值1,值2,值N);
select*from product where id in(2,3,4,10);
select*from product where id notin(2,3,4,10);
#like 模糊查詢(xún)
select*from表名where列名 like '%值%';
select*from product where name like '%Li%';
#between...and... 范圍查詢(xún)
select*from表名where列名 between 值and值;
select*from order where created between '2010-01-01'and'2011-01-01';
7.查詢(xún)排序
select*from表名 order by列名排序方式;
#排序方式: asc(升序,默認(rèn)),desc(降序)
select*from product order by created desc;
8.限制查詢(xún)結(jié)果數(shù)量
select*from表名 limit 開(kāi)始記錄數(shù),結(jié)果數(shù)量;select*from product limit 5;
select*from product limit 2,5;
9.聚合函數(shù)
# count 總記錄數(shù)
select count(列名)from student;
select count(id)from student;
# sum 總共
select sum(列名)from student;
select sum(age)from student;
# avg 平均值
select avg(列名)from student;
select avg(age)as avg_age from student;
# max 最大值
select max(列名)from student;
select max(age)from student;
# min 最小值
select min(列名)from student;
select min(age)from student;
10.子查詢(xún)
select name from student where age<(select avg(age)from student );
select*from product where id in(select id from order );
11.連接查詢(xún)
select s.username as stu_name, t.name as te_name from student s, teacher t where s.teacher_id=t.id;
相關(guān)文章
Mysql兩種情況下更新字段中部分?jǐn)?shù)據(jù)的方法
Mysql更新字段中部分?jǐn)?shù)據(jù)的兩種情況在下文給予詳細(xì)的解決方法,感興趣的朋友可以參考下哈2013-05-05初探SQL語(yǔ)句復(fù)合主鍵與聯(lián)合主鍵
這篇文章主要介紹了初探SQL語(yǔ)句復(fù)合主鍵與聯(lián)合主鍵的相關(guān)內(nèi)容,具有一定參考價(jià)值,這里給大家分享下,需要的朋友可以參考。2017-10-10mysql中sum float類(lèi)型使用小數(shù)點(diǎn)的方法
使用sum示和時(shí)如果是float類(lèi)型的數(shù)據(jù)就會(huì)出現(xiàn)小數(shù)點(diǎn)了,那么要如何解決這個(gè)問(wèn)題,下面介紹二種方法2013-11-11

MySQL高級(jí)特性——數(shù)據(jù)表分區(qū)的概念及機(jī)制詳解
當(dāng)數(shù)據(jù)表過(guò)大時(shí),通過(guò)普通的查詢(xún)優(yōu)化技巧已經(jīng)無(wú)法大幅度提升性能,此時(shí)往往需要進(jìn)行分區(qū)分表優(yōu)化。分區(qū)其實(shí)是將一張邏輯上統(tǒng)一的表在物理上劃分成了多張表。分區(qū)操作對(duì)使用者而言是一個(gè)黑盒操作,但是如果你從文件系統(tǒng)上看,就會(huì)看到分區(qū)數(shù)據(jù)表的實(shí)際存儲(chǔ)方式是分開(kāi)的。
2021-05-05