程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 學習mysql之後的一點總結(基礎)

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

編輯:關於MYSQL數據庫
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;打八折
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved