資料開發-經典
Select * From TableName Order By CustomerName Collate Chinese_PRC_Stroke_ci_as //從少到多
select encrypt('原始密碼')select pwdencrypt('原始密碼')select pwdcompare('原始密碼','加密後密碼') = 1--相同;否則不相同 encrypt('原始密碼')select pwdencrypt('原始密碼')select pwdcompare('原始密碼','加密後密碼') = 1--相同;否則不相同
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)
EXEC master..xp_fixeddrives
if (select checksum_agg(binary_checksum(*)) from A) = (select checksum_agg(binary_checksum(*)) from B)print '相等'elseprint '不相等'
DECLARE hcforeach CURSOR GLOBAL FOR SELECT 'kill '+RTRIM(spid) FROM master.dbo.sysprocessesWHERE program_name IN('SQL profiler',N'SQL 事件探查器')EXEC sp_msforeach_worker '?'
開頭到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
案例 例如1:一張表有一萬多條記錄,表的第一個欄位 RecID 是自增長欄位, 寫一個SQL語句, 找出表的第31到第40個記錄。
select top 10 recid from A where recid not in(select top 30 recid
from A) 分析:如果這樣寫會產生某些問題,如果recid在表中存在邏輯索引。
select top 10 recid from A where……
是從索引中尋找,而後面的select top 30 recid from A則在資料表中尋找,這樣由於索引中的順序有可能和資料表中的不一致,這樣就導致查詢到的不是本來的欲得到的資料。
解決方案
1,用order by select top 30 recid from A order by ricid 如果該欄位不是自增長,就會出現問題2,在那個子查詢中也加條件:select top 30 recid from A where recid>-1例2:查詢表中的最後以條記錄,並不知道這個表共有多少資料,以及表結構。set @s = 'select top 1 * from T where pid not in (select top ' + str(@count-1) + ' pid from T)'print @s exec sp_executesql @s
select Name from sysobjects where xtype='u' and status>=0
select name from syscolumns where id=object_id('表名')select name from syscolumns where id in (select id from sysobjects where type = 'u' and name = '表名')兩種方式的效果相同
select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'
select name as 預存程序名稱 from sysobjects where xtype='P'
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
select column_name,data_type from information_schema.columnswhere table_name = '表名'
--建立連結的伺服器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 '
--1、openrowset--查詢樣本select * from openrowset( 'SQLOLEDB ', 'sql伺服器名 '; '使用者名稱 '; '密碼 ',資料庫名.dbo.表名)--產生本地表select * into 表 from openrowset( 'SQLOLEDB ', 'sql伺服器名 '; '使用者名稱 '; '密碼 ',資料庫名.dbo.表名)
insert openrowset( 'SQLOLEDB ', 'sql伺服器名 '; '使用者名稱 '; '密碼 ',資料庫名.dbo.表名)select *from 本地表
update bset b.列A=a.列A from openrowset( 'SQLOLEDB ', 'sql伺服器名 '; '使用者名稱 '; '密碼 ',資料庫名.dbo.表名)as a inner join 本地表 bon a.column1=b.column1
--首先建立一個串連建立連結的伺服器exec sp_addlinkedserver 'ITSV ', ' ', 'SQLOLEDB ', '遠程伺服器名或ip地址 '
--查詢select *FROM openquery(ITSV, 'SELECT * FROM 資料庫.dbo.表名 ')
--把本地表匯入遠端資料表insert openquery(ITSV, 'SELECT * FROM 資料庫.dbo.表名 ')select * from 本地表
--更新本地表update bset b.列B=a.列BFROM openquery(ITSV, 'SELECT * FROM 資料庫.dbo.表名 ') as a inner join 本地表 b on a.列A=b.列A
SELECT *FROM opendatasource( 'SQLOLEDB ', 'Data Source=ip/ServerName;User ID=登陸名;Password=密碼 ' ).test.dbo.roy_ta--把本地表匯入遠端資料表insert opendatasource( 'SQLOLEDB ', 'Data Source=ip/ServerName;User ID=登陸名;Password=密碼 ').資料庫.dbo.表名select * from 本地表
SQL Server基本函數1.字串函數 長度與分析用1,datalength(Char_expr) 返回字串包含字元數,但不包含後面的空格2,substring(expression,start,length) 取子串,字串的下標是從“1”,start為起始位置,length為字串長度,實際應用中以len(expression)取得其長度3,right(char_expr,int_expr) 返回字串右邊第int_expr個字元,還用left於之相反4,isnull( check_expression , replacement_value )如果check_expression為空,則返回replacement_value的值,不為空,就返回check_expression字元操作類5,Sp_addtype自定義數據類型例如:EXEC sp_addtype birthday, datetime, 'NULL'6,set nocount {on|off}使返回的結果中不包含有關受 Transact-SQL 陳述式影響的行數的資訊。如果預存程序中包含的一些語句並不返回許多實際的資料,則該設定由於大量減少了網路流量,因此可顯著提高效能。SET NOCOUNT 設定是在執行或運行時設定,而不是在分析時設定。SET NOCOUNT 為 ON 時,不返回計數(表示受 Transact-SQL 陳述式影響的行數)。
SET NOCOUNT 為 OFF 時,返回計數 常識 在SQL查詢中:from後最多可以跟多少張表或視圖:256在SQL語句中出現 Order by,查詢時,先排序,後取在SQL中,一個欄位的最大容量是8000,而對於nvarchar(4000),由於nvarchar是Unicode碼。