--查看指定表的外鍵約束
select * from sysobjects where parent_obj in(
select id from sysobjects where name='表名')
and xtype='PK'
--查看所有表
select * from sysobjects where xtype='PK'
--刪除列中含數位
delete news where patindex('%[0-9]%',title)>0
--刪除刪去 欄位 title值重複的行,且只保留 id 較小的這個
delete news where exists(select 1 from news t where t.title=news.title and t.id<news.id)
--查看資料庫資訊
select * from sys.databases where name='master'
1.按姓氏筆畫排序:
Select * From TableName Order By CustomerName Collate Chinese_PRC_Stroke_ci_as
2.分頁SQL語句
select * from(select (row_number() OVER (ORDER BY tab.ID Desc)) as rownum,tab.* from 表名 As tab) As t where rownum between 起始位置 And 結束位置
3.擷取當前資料庫中的所有使用者表
select * from sysobjects where xtype='U' and category=0
4.擷取某一個表的所有欄位
select name from syscolumns where id=object_id('表名')
5.查看與某一個表相關的視圖、預存程序、函數
select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'
6.查看當前資料庫中所有預存程序
select name as 預存程序名稱 from sysobjects where xtype='P'
7.查詢使用者建立的所有資料庫
select * from master..sysdatabases D where sid not in(select sid from master..syslogins where name='sa')
或者
select dbid, name AS DB_NAME from master..sysdatabases where sid <> 0x01
8.查詢某一個表的欄位和資料類型
select column_name,data_type from information_schema.columns
where table_name = '表名'
9.使用事務
在使用一些對資料庫表的臨時的SQL語句操作時,可以採用SQL SERVER交易處理,防止對資料操作後發現誤操作問題
開始事務
Begin tran
Insert Into TableName Values(…)
SQL語句操作不正常,則復原事務。
復原事務
Rollback tran
SQL語句操作正常,則提交事務,資料提交至資料庫。
提交事務
Commit tran
10. 按全文匹配方式查詢
欄位名 LIKE N'%[^a-zA-Z0-9]China[^a-zA-Z0-9]%'
OR 欄位名 LIKE N'%[^a-zA-Z0-9]China'
OR 欄位名 LIKE N'China[^a-zA-Z0-9]%'
OR 欄位名 LIKE N'China
11.計算執行SQL語句查詢時間
declare @d datetime
set @d=getdate()
select * from SYS_ColumnProperties select [語句執行花費時間(毫秒)]=datediff(ms,@d,getdate())
12、說明:幾個進階查詢運算詞
A: UNION 運算子
UNION 運算子通過組合其他兩個結果表(例如 TABLE1 和 TABLE2)並消去表中任何重複行而派生出一個結果表。當 ALL 隨 UNION 一起使用時(即 UNION ALL),不消除重複行。兩種情況下,派生表的每一行不是來自 TABLE1 就是來自 TABLE2。
B: EXCEPT 運算子
EXCEPT 運算子通過包括所有在 TABLE1 中但不在 TABLE2 中的行並消除所有重複行而派生出一個結果表。當 ALL 隨 EXCEPT 一起使用時 (EXCEPT ALL),不消除重複行。
C: INTERSECT 運算子
INTERSECT 運算子通過只包括 TABLE1 和 TABLE2 中都有的行並消除所有重複行而派生出一個結果表。當 ALL 隨 INTERSECT 一起使用時 (INTERSECT ALL),不消除重複行。