雲端計算學習素材框架,msyql查詢操作課件

千鋒雲端計算發表於2019-12-19

在本篇文章中將給大家講解下msyql查詢操作:

雲端計算學習素材框架,msyql查詢操作課件

查詢

簡單查詢:select * from '表名';

避免重複:select distinct '欄位' from '表名';

條件查詢:select 欄位,欄位 from 表名 where id<=5(條件);

四則運算查詢:select id,dep_id,id*dep_id from company.employee5 where id<=5;

定義顯示格式一:select id*dep_id as "id and dep_id's sum" from company.employee5 where id<=5;

定義顯示格式:SELECT CONCAT(name, ' annual salary: ', salary*14) AS Annual_salary FROM employee5; //定義格式+四個運算,CONCAT是關鍵字

多條件:select '欄位,欄位‘ from '表名' WHERRE '條件一' AND '條件二';

關鍵字between and:

select '欄位,欄位' from '表名' where 欄位 BETWEEN

'條件一' AND '條件二';

----------

排序查詢:

select '欄位' from '表名' ORDER BY '排序欄位';//欄位後加DESC正序,ASC反序

限制查詢的記錄數:

select '欄位' from '表名' ORDER BY '欄位,DESC|ACS' LIMIT '數字'; //數字有兩種的是(5,從初始位置到第五個)(2,5,第三個開始,共顯示五個)

使用集合的查詢:

select COUNT(*) from '表名';

select COUNT(*) FROM '表名' WHERE dep_id=101;

select MAX(salary) FROM '表名';

select MIN(salary) FROM '表名';

select AVG(salary) FROM '表名';

select SUM(salary) FROM '表名';

select SUM(salary) FROM '表名' WHERE dep_id=101;

分組查詢:

select '欄位' from '表名' group by 欄位; //可參考下列面試題

模糊查詢:

select '欄位' from '表名' LIKE '關鍵字';

正規表示式查詢:

select * from '表名' where '欄位' REGEXP '關鍵字';

刪庫

刪庫:drop database '庫名';

刪表:drop table '表名'


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69916964/viewspace-2669552/,如需轉載,請註明出處,否則將追究法律責任。

相關文章