欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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,值...); 
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 存在該記錄則更新,不存在則插入記錄的sql

    mysql 存在該記錄則更新,不存在則插入記錄的sql

    非常不錯(cuò)的功能,主要用于更新特定的記錄,如果存在這條記錄則更新一下,如果不存在則插入記錄。應(yīng)用于配置文件等。
    2010-04-04
  • MySQL內(nèi)存使用的查看方式詳解

    MySQL內(nèi)存使用的查看方式詳解

    MySQL中內(nèi)存分為全局內(nèi)存和線(xiàn)程內(nèi)存兩大部分(其實(shí)并不全部,只是影響比較大的 部分),下面這篇文章主要給大家介紹了關(guān)于MySQL內(nèi)存使用的查看方式,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2019-01-01
  • MySQL高級(jí)特性——數(shù)據(jù)表分區(qū)的概念及機(jī)制詳解

    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
  • 最新評(píng)論