国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > MySQL > 正文

PHP之Mysql常用SQL語句示例的深入分析

2020-01-18 23:43:02
字體:
來源:轉載
供稿:網友
1.插入數據
insert into表名(列名1,列名2,列名..) values(值1,2,值...); 
insert into product(name, price, pic_path) values('Nike',500,'uploads/3245.jpg');

2.更新數據
update 表名set列名1=值1,列名2=值2[where條件]; 
update product set name='LiNing', price=50where id=2; 

3.刪除數據
deletefrom表名[where條件]; 
deletefrom product where id=2;

4.查詢所有數據 
select*from表名;select*from product;

5.查詢部份列
select列名1,列名2,列名N from表名;
select name, price from product;

6.條件查詢
# 比較 =, <, >, <=, >=, !=
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 模糊查詢 
select*from表名where列名 like '%值%'; 
select*from product where name like '%Li%'; 
#between...and... 范圍查詢 
select*from表名where列名 between and值; 
select*from order where created between '2010-01-01'and'2011-01-01';

7.查詢排序
select*from表名 order by列名排序方式;
#排序方式: asc(升序,默認),desc(降序) 
select*from product order by created desc;

8.限制查詢結果數量
select*from表名 limit 開始記錄數,結果數量;select*from product limit 5;
select*from product limit 2,5;

9.聚合函數
# count 總記錄數 
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.子查詢
select name from student where age<(select avg(age)from student ); 
select*from product where id in(select id from order );

11.連接查詢
select s.username as stu_name, t.name as te_name from student s, teacher t where s.teacher_id=t.id;
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 曲周县| 海伦市| 黄骅市| 广州市| 东平县| 上饶县| 丹巴县| 河东区| 遂昌县| 宜昌市| 八宿县| 阿瓦提县| 嘉善县| 新乡市| 靖江市| 大丰市| 阜宁县| 乌海市| 如东县| 永清县| 平遥县| 北安市| 拜城县| 同仁县| 宜宾县| 渑池县| 富蕴县| 通山县| 辽阳县| 巨鹿县| 九龙坡区| 庆城县| 普兰店市| 资兴市| 明光市| 拜城县| 师宗县| 桐柏县| 澜沧| 永城市| 平利县|