天天看點

SQL常用指令使用方法

 SQL常用指令使用方法:

(1) 資料記錄篩選:

sql="select * from 資料表 where 字段名=字段值 order by 字段名 [desc]"

sql="select * from 資料表 where 字段名 like /'%字段值%/' order by 字段名 [desc]"

sql="select top 10 * from 資料表 where 字段名 order by 字段名 [desc]"

sql="select * from 資料表 where 字段名 in (/'值1/',/'值2/',/'值3/')"

sql="select * from 資料表 where 字段名 between 值1 and 值2"

(2) 更新資料記錄:

sql="update 資料表 set 字段名=字段值 where 條件表達式"

sql="update 資料表 set 字段1=值1,字段2=值2 …… 字段n=值n where 條件表達式"

(3) 删除資料記錄:

sql="delete from 資料表 where 條件表達式"

sql="delete from 資料表"  (将資料表所有記錄删除)

(4) 添加資料記錄:

sql="insert into 資料表 (字段1,字段2,字段3 …) values (值1,值2,值3 …)"

sql="insert into 目标資料表 select * from 源資料表"  (把源資料表的記錄添加到目标資料表)

(5) 資料記錄統計函數:

AVG(字段名) 得出一個表格欄平均值

COUNT(*|字段名) 對資料行數的統計或對某一欄有值的資料行數統計

MAX(字段名) 取得一個表格欄最大的值

MIN(字段名) 取得一個表格欄最小的值

SUM(字段名) 把資料欄的值相加

引用以上函數的方法:

sql="select sum(字段名) as 别名 from 資料表 where 條件表達式"