三、開發應用
1.按姓氏筆畫排序:
Select * From TableName Order By CustomerName Collate Chinese_PRC_Stroke_ci_as //從少到多
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 --> 測試數據:[a] if object_id('[a]') is not null drop table [a] go create table [a]([ID] int,[Name] varchar(6)) insert [a] select 1,'張三' union all select 2,'李四' union all select 3,'王五' union all select 4,'趙六' union all select 5,'孫七' -->查詢語句(按姓氏筆畫排序) select * from a Order By [Name] Collate Chinese_PRC_Stroke_ci_as /* ID Name ----------- ------ 3 王五 5 孫七 1 張三 2 李四 4 趙六 (5 行受影響) */ 2.數據庫加密: select encrypt('原始密碼') select pwdencrypt('原始密碼') select pwdcompare('原始密碼','加密後密碼') = 1--相同;否則不相同 encrypt('原始密碼') select pwdencrypt('原始密碼') select pwdcompare('原始密碼','加密後密碼') = 1--相同;否則不相同 3.取回表中字段: declare @list varchar(1000), @sql nvarchar(1000) select @list=@list+','+b.name from sysobjects a,syscolumns b where a.id=b.id and a.name='表A' set @sql='select '+right(@list,len(@list)-1)+' from 表A' exec (@sql) 4.查看硬盤分區:EXEC master..xp_fixeddrives
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 EXEC master..xp_fixeddrives /* drive MB 可用空間 ----- ----------- C 168 D 130379 E 57714 (3 行受影響) */ 5.比較A,B表是否相等:?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 --> 測試數據:[a] if object_id('[a]') is not null drop table [a] go create table [a]([ID] int,[Name] varchar(6)) insert [a] select 1,'張三' union all select 2,'李四' union all select 3,'王五' union all select 4,'趙六' union all select 5,'孫七' -->測試數據[b] select * into [b] from [a] if (select checksum_agg(binary_checksum(*)) from A) = (select checksum_agg(binary_checksum(*)) from B) print '相等' else print '不相等' /* 相等 */6.記錄搜索:
開頭到N條記錄
Select Top N * From 表
-------------------------------
N到M條記錄(要有主索引ID)
Select Top M-N * From 表 Where ID in (Select Top M ID From 表) Order by ID Desc
----------------------------------
N到結尾記錄
Select Top N * From 表 Order by ID Desc
7:獲取當前數據庫中的所有用戶表
select Name from sysobjects where xtype='u' and status>=0
8:獲取某一個表的所有字段
select name from syscolumns where id=object_id('表名')
select name from syscolumns where id in (select id from sysobjects where type = 'u' and name = '表名')
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 select name from syscolumns where id=object_id('a') select name from syscolumns where id in (select id from sysobjects where type = 'u' and name = 'a') /* name ---------------------------------- ID Name (2 行受影響) name ----------------------------------- ID Name (2 行受影響) */兩種方式的效果相同
9:查看與某一個表相關的視圖、存儲過程、函數
select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'
10:查看當前數據庫中所有存儲過程
select name as 存儲過程名稱 from sysobjects where xtype='P'
11:查詢用戶創建的所有數據庫
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
12:查詢某一個表的字段和數據類型
select column_name,data_type from information_schema.columns
where table_name = '表名'
13:不同服務器數據庫之間的數據操作
--創建鏈接服務器
exec sp_addlinkedserver 'ITSV ', ' ', 'SQLOLEDB ', '遠程服務器名或ip地址 '
exec sp_addlinkedsrvlogin 'ITSV ', 'false ',null, '用戶名 ', '密碼 '
--查詢示例
select * from ITSV.數據庫名.dbo.表名
--導入示例
select * into 表 from ITSV.數據庫名.dbo.表名
--以後不再使用時刪除鏈接服務器
exec sp_dropserver 'ITSV ', 'droplogins '
--連接遠程/局域網數據(openrowset/openquery/opendatasource)
14、openrowset
--查詢示例
select * from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名)
--生成本地表
select * into 表 from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名)
--把本地表導入遠程表
insert openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名)
select *from 本地表
--更新本地表
update b
set b.列A=a.列A
from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名)as a inner join 本地表 b
on a.column1=b.column1
--openquery用法需要創建一個連接
--首先創建一個連接創建鏈接服務器
exec sp_addlinkedserver 'ITSV ', ' ', 'SQLOLEDB ', '遠程服務器名或ip地址 '
--查詢
select *
FROM openquery(ITSV, 'SELECT * FROM 數據庫.dbo.表名 ')
--把本地表導入遠程表
insert openquery(ITSV, 'SELECT * FROM 數據庫.dbo.表名 ')
select * from 本地表
--更新本地表
update b
set b.列B=a.列B
FROM openquery(ITSV, 'SELECT * FROM 數據庫.dbo.表名 ') as a
inner join 本地表 b on a.列A=b.列A