亚洲AV无码成人网站久久精品大最新的|A区色逼逼不卡91AV一区二区|免费涩涩夜夜骑一区|亚洲中日韩成人在钱|男女视频在线观看无人一区二区|欧美精品成人在线观看一区二区|国产青青草原一区二区三区精品在线|久久免费观看伊人网|亚洲一区二区在线导航|日韩字幕一区二区

學習啦 > 學習英語 > 專業(yè)英語 > 計算機英語 > 數據庫select的用法

數據庫select的用法

時間: 長思709 分享

數據庫select的用法

  數據庫select的用法的用法你知道嗎?下面小編就跟你們詳細介紹下數據庫select的用法的用法,希望對你們有用。

  數據庫select的用法的用法如下:

  1、select語句可以用回車分隔

  ?

  1

  2

  3

  4

  $sql="select * from article where id=1"

  和

  $sql="select * from article

  where id=1",都可以得到正確的結果,但有時分開寫或許能更明了一點,特別是當sql語句比較長時

  2、批量查詢數據

  ?

  1

  2

  可以用in來實現

  $sql="select * from article where id in(1,3,5)"

  3、使用concat連接查詢的結果

  ?

  1

  $sql="select concat(id,"-",con) as res from article where id=1"

  返回"1-article content"

  4、使用locate

  用法:

  select locate("hello","hello baby");返回1

  不存在返回0

  5、使用group by

  以前一直沒怎么搞明group by 和 order by,其實也滿簡單的,group by 是把相同的結果編為一組

  ?

  1

  exam:$sql="select city ,count(*) from customer group by city";

  這句話的意思就是從customer表里列出所有不重復的城市,及其數量(有點類似distinct)

  group by 經常與AVG(),MIN(),MAX(),SUM(),COUNT()一起使用

  6、使用having

  having 允許有條件地聚合數據為組

  ?

  1

  2

  $sql="select city,count(*),min(birth_day) from customer

  group by city having count(*)>10";

  這句話是先按city歸組,然后找出city地數量大于10的城市

  btw:使用group by + having 速度有點慢

  同時having子句包含的表達式必須在之前出現過

  7、組合子句

  where、group by、having、order by(如果這四個都要使用的話,一般按這個順序排列)

  8、使用distinct

  distinct是去掉重復值用的

  ?

  1

  $sql="select distinct city from customer order by id desc";

  這句話的意思就是從customer表中查詢所有的不重復的city

  9、使用limit

  如果要顯示某條記錄之后的所有記錄

  ?

  1

  $sql="select * from article limit 100,-1";

  10、多表查詢

  ?

  1

  2

  3

  4

  $sql="select user_name from user u,member m

  where u.id=m.id and

  m.reg_date>=2006-12-28

  order by u.id desc"

  注意:如果user和member兩個標同時有user_name字段,會出現mysql錯誤(因為mysql不知道你到底要查詢哪個表里的user_name),必須指明是哪個表的;

543095