單表查詢 1、查詢所有: select * from 表名; 2、查詢選中欄位數據: select 欄位名 from 表名; 3、查詢指定條件下的數據: select 欄位名 from 表名 where 條件(例id>3); 4、查詢後為欄位取別名 as: select 原名 as 更改名 from ...
單表查詢
1、查詢所有:
select * from 表名;
2、查詢選中欄位數據:
select 欄位名 from 表名;
3、查詢指定條件下的數據:
select 欄位名 from 表名 where 條件(例id>3);
4、查詢後為欄位取別名 as:
select 原名 as 更改名 from 表名;
5、模糊查詢 like:
select *from 表名 where 欄位名 like 該欄位里的其中一個字元(例‘小%’,則查詢出該欄位里所有以小字開頭的數據,‘%百分號代表後面多個’,‘_下劃線代表一個’)
6、排序 order by:
select * from 表名 order by 欄位名;(預設升序:asc)
select * from 表名 order by 欄位名 desc;(降序:desc)
7、限制顯示數據的數量 limit :
select * from 表名 order by 欄位名 limit 2;# 以欄位名的升序取兩條數據,2為限制兩條數據
select * from 表名 order by 欄位名 limit 2,2;