1、sql select 語句
語法:select 列名稱 from 表名稱2、sql select distinct 語句
語法:select distinct 列名稱 from 表名稱3、sql where 語句
語法:select 列名稱 from 表名稱 where 列 運算子 值操作符描述=等於
<>
不等於》
大於<
小於》=
大於等於
<=
小於等於
between
在某個範圍內
like
搜尋某種模式
注釋:在某些版本的 sql 中,操作符 <> 可以寫為 !=。
sql 使用單引號來環繞文字值。若果是數值,不能使用引號。
4、sql and & or 運算子
and 和 or 運算子用於基於乙個以上的條件對記錄進行過濾。使用運括號組成複雜的表示式。5、sql order by 子句
根據指定的列對結果集進行排序,預設安生許對記錄進行排序,可以使用 desc 關鍵字進行降序排列。6、sql insert into 語句如果第一列有相同的值或者有些值為空時,以第二列公升序進行排列。
語法:insert into 表名稱 values (值1,值2,....)7、sql update 語句指定插入資料的列:insert into table_name (列1,列2,...) values (值1,值2,....)
語法:update 表名稱 set 列名稱 = 新值 where 列名稱 = 某值8、sql delete 語句
語法:delete from 表名稱 where 列名稱 = 值刪除所有行操作,意味著表的結構、屬性和索引都是完整的,單資料是空的。
delete * from tables_name
SQL語句 常用(基礎篇)
sql structured query language 結構化查詢語言,是用於訪問和處理資料庫的標準的計算機語言。sql 是一種 ansi american national standards institute 美國國家標準化組織 標準的計算機語言。select語句 select from ...
sql常用sql語句
1 查詢某個庫中所有的表名字 select name from sysobjects where xtype u and name dtproperties order by name 2 得到資料庫中所有使用者檢視 select name from sysobjects where xtype v...
MySQL常用基礎SQL語句以及常用約束
建立資料庫 create database mydb 刪除資料庫 drop database mydb 檢視當前所有資料庫 show databases 建立表 create table student id int 11 pwd varchar 255 刪除表 drop table student...