Mysql常用知識

來源:互聯網
上載者:User

標籤:des   使用   sp   strong   on   bs   ef   as   sql   

一、常用關鍵詞:
 1.distinct:過濾重複
  select distinct create_user_name from bms_project;  此種情況下,就要用到distinct過濾掉重複的。
  
 2.count: 統計
  select count(*) from bms_project; 查詢bms_project表裡總共有多少條記錄。
  select count(*) from bms_project where project_type=1;  查詢bms_project表裡project_type=1的總共有多少條記錄。
  
 3.top: 取最前面的N條
  select top 3 * from bms_project;  查詢bms_project裡的最前面3條記錄。
  
 4.like: 模糊查詢 
  select * from bms_project where project_name like ‘%項目%‘ and project_type=2; 
  查詢bms_project表裡project_type=2,並且project_name中包含“項目”二字的記錄。
  
 5.between...and...:從...到...; 在...之間
  select * from bms_project where project_budget between 500000 and 1000000;
  查詢bms_project表裡project_budget在500000到1000000之間的記錄。
 
 6.in: 子查詢
  select * from bms_project where id in(100,110,120,130,140,150);
  查詢bms_project表裡id是100,110,120,130,140,150的記錄。
  
 7.order by: 排序 (ASC順序,DESC逆序)
  select * from bms_project order by project_budget DESC;
  
 8.group by: 以...分組。通常和彙總函式配合使用(count(),sum(),avg())
  select project_type,sum(project_budget) from bms_project group by project_type;
  注意:group by 後面的欄位和select後非彙總函式的欄位一致。
  
 9.limit x,y  (x:起始位置,y:位移值)
  select project_budget from bms_project order by project_budget desc limit 0,5 ;
  從bms_project表中取出前五條,並按照project_budget由大到小的順序顯示。
  
二、多表串連查詢:
 1. table1 INNER JOIN table2: 內串連。只顯示串連的兩張表的交集行。
 2. table1 LEFT JOIN table2: 左外串連。顯示table1的所有行,即使在table2中沒有匹配的行。
 3. table1 RIGHT JOIN table2:右外串連。顯示table2的所有行,即使在table1z中沒有匹配的行。
 4. table1 FULL JOIN table2: 即使table1中的行在table2中沒有匹配,或者table2中的行在table1中沒有匹配。它仍返回table1和table2兩張表中所有匹配的行。

取人之長,補己之短

Mysql常用知識

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.