學習mysql之後的一點總結(基礎)

joytoy發表於2021-09-09

           1.想要在命令提示符下操作mysql伺服器,新增系統變數。(計算機-系統屬性——環境變數——path)

2.查詢資料表中的資料;

select selection_list select * /columns

from table_list from table1/table2

where primary_constraint

group by grouping_columns

order by sorting_colomns desc降序 select * from table order by id desc;

having second_constraint

limit count select * from table where id limit 1,4;

2 常用的統計函式:avg(欄位),sum(欄位),count(欄位),min(欄位),

select sum(欄位2) as 別名 ,欄位1 from table group by 欄位1;

3 算數運算,字串,以及邏輯運算構造表示式:select * (price*0.8) as '80%' from table;打八折

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

相關文章