sql學習筆記
阿新 • • 發佈:2017-11-09
bsp into date 例如 lec people 選項 相同 asc
1.select 列名稱 from 表名稱;
2.select distinct 列名稱 from 表名稱:去除列中相同的值。
3.select 列名稱 from 表名稱 where 列名稱 運算符 值:有條件的查詢對應值(註意:對於字符需要加‘ ‘,對於數值,不能加 ‘ ‘);
4.采用or或者and可以在任意條件上添加篩選項,例如 select * from people where name =“Jhon” and age > 20;
5.order by (用於查詢的值進行排序) 例:select name from persons order by name (查詢name字段的列根據值的順序排列好);
關鍵字:ASC 從小到大(升序);DESC從大到小(降序)
6.insert into 表名稱 values (值1,值2,.......);
註:插入固定列數值:insert into 表名稱 (列1,列2,......) values (值1,值2,......);
7.更新修改表中的數據:update 表名稱 set name= ‘huahua‘ where lastname = ‘jhon‘;(修改表中lastname為jhon的行中name為huahua);
sql學習筆記