select
select 列名稱 from 表名稱
select * from 表名稱
select lastname,firstname from persons
insert
insert into 表名稱 values (值1, 值2,....)
insert into table_name (列1, 列2,...) values (值1, 值2,....)
insert into persons values ('gates', 'bill', 'xuanwumen 10', 'beijing')
insert into persons (lastname, address) values ('wilson', 'champs-elysees')
update
update 表名稱 set 列名稱 = 新值 where 列名稱 = 某值
update person set address = 'zhongshan 23', city = 'nanjing' where lastname = 'wilson'
delete
delete from 表名稱 where 列名稱 = 值
delete from person where lastname = 'wilson'
where
select 列名稱 from 表名稱 where 列 運算子 值
select * from persons where firstname='bush'
select * from persons where year>1965
select * from persons where (firstname='thomas' or firstname='william')and lastname='carter'
desc asc
select company, ordernumber from orders order by company desc, ordernumber asc
company降序,ordernumber公升序
select distinct company from orders
摘自w3school的html標籤內容 程式設計標籤
1 定義客戶端指令碼。屬性 1 type 指示指令碼的mime型別 2 async 規定非同步執行指令碼 3 charset 規定在外部指令碼檔案中使用的字元編碼。4 defer 規定是否對指令碼執行進行延遲,直到頁面載入為止。5 src 規定外部指令碼檔案的url 6 xml space 規定是否...
SQL 基本語句
在查詢分析器中執行如下語句 sp password null,teracypwd sa 把sa的密碼設為 teracypwd 執行成功後有 command s completed successfully.ok insert into 表名稱 values 值1,值2,insert into per...
sql基本語句
sql常用命令 資料的增刪改查 增加資料 插入資料 insert into 表名 字段 字段 values 值,值,值.按需要字段填寫 insert into 表名 values 值,值,值.插入全部字段,自動增長列不寫 刪除資料 記得有外來鍵先刪除主鍵表裡的相應內容 刪除表裡的內容 delete ...