set names utf8;
//命令用於設定使用的字符集。
select
*from 【table】;
//讀取資料表的資訊
建立表:
create
table tabname
(col1 type1 [
notnull][
primary
key]
, col2 type2 [
notnull],
..)
select (distinct 去掉重複值)column_name1,column_name2
from table_name (where 條件 (and
&or))
distinct
和where
不是必須
選取指定列(預設公升序,降序關鍵字desc,公升序關鍵字asc)
where 條件(and & or 運算子 多個條件的都滿足&或滿足)
insert into 語句可以有兩種編寫形式。
insert
into table_name
values
(value1,value2,value3,..
.);
insert
into table_name (column1,column2,column3,..
.)values
(value1,value2,value3,..
.);
update table_name
set column1=value1,column2=value2,..
. (where some_column=some_value)
delete
from table_name
where some_column=some_value;
set
identity_insert category on
--開啟
insert
into category (id,name)
values(8
,'體育新聞'
)set
identity_insert category off
--關閉
SQL2K必備經驗六條
sql2k必備經驗六條 無錫 王乾 本文介紹sql server 2k實用操作六條小技巧,包括有安裝時提示有掛起操作的解決方法 如何收縮資料庫 怎樣壓縮資料庫 如何轉移資料庫給新使用者以已存在使用者許可權 檢查備份集 修復資料庫等。一.掛起操作 在安裝sql或sp補丁的時候系統提示之前有掛起的安裝操...
SQL2K必備經驗六條
sql2k必備經驗六條 無錫 王乾 本文介紹sql server 2k實用操作六條小技巧,包括有安裝時提示有掛起操作的解決方法 如何收縮資料庫 怎樣壓縮資料庫 如何轉移資料庫給新使用者以已存在使用者許可權 檢查備份集 修復資料庫等。一.掛起操作 在安裝sql或sp補丁的時候系統提示之前有掛起的安裝操...
SQL2K必備經驗六條
sql2k必備經驗六條 無錫 王乾 本文介紹sql server 2k實用操作六條小技巧,包括有安裝時提示有掛起操作的解決方法 如何收縮資料庫 怎樣壓縮資料庫 如何轉移資料庫給新使用者以已存在使用者許可權 檢查備份集 修復資料庫等。一.掛起操作 在安裝sql或sp補丁的時候系統提示之前有掛起的安裝操...