程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> SQL Server 常用SQL總結

SQL Server 常用SQL總結

編輯:關於SqlServer

       SQL Server 常用SQL總結

      order by NAME collate Chinese_PRC_Stroke_CS_AS_KS_WS

      /*sqlserver分組不能以text,ntext,image類型的字段作為分組依據*/

      --強制查詢使用索引:

      select id from table_name with(index(索引名)) where num=@num

      --全文檢索(name like '%abc%')(substring(cal_name ,1,3)='abc')

      select id from t where charindex('abc',cal_name ) > 0

      --查看對象的定義

      sp_helptext name

      --中文漢字筆畫從少到多排列

      select * from table_name order by cal_name collate chinese_prc_stroke_ci_as

      --任意前10條記錄

      select top 10 * from table_name order by newid()

      --添加序號時必須有into語句

      select identity(int,1,1) id, * into #table_name from table_name

      --錢10~20行數據

      select top 10 * from (select top 20 * from #table_name order by id asc) as new_tab_name order by id desc

      --隨機取出10條數據

      select top 10 * from table_name order by newid()

      --將字串值重復指定的次數。

      SELECT REPLICATE ( 'K' ,5 ) --KKKKK

      --統計有多少個漢字

      select datalength('kk中國123')-len('kk中國123')

      select nullif('kk','kk') --相等為null,否則取第一個

      select isnull(null,'kk') --第一個值不為空取第一個,否則為第二個

      select coalesce(null,null,'kk','中國') --返回第一個非空值

      --小數取整

      select CEILING(12.7) --[13];取大於12.7的最小整數

      select CEILING(12.2) --[13];取大於12.2的最小整數

      select FLOOR(12.7) --[12];取小於12.7的最大整數

      select FLOOR(12.2) --[12];取小於12.2的最大整數

      select round(12.77,0) --[13.00];四捨五入,0位小數

      select round(12.24,1) --[12.20];四捨五入,1位小數

      --按位置替換

      select STUFF ( 'ABCDEFG' , 2 , 0 ,'-' ) --[A-BCDEFG];第二個位置,取字符長度為0,替換為-

      select STUFF ( 'ABCDEFG' , 2 , 1 ,'b' ) --[AbCDEFG];第二個位置,取字符長度為1,替換為b

      select STUFF ( 'ABCDEFG' , 2 , 2 ,'*' ) --[A*DEFG];第二個位置,取字符長度為2,替換為*

      --按相同字符替換

      select REPLACE('ABCDEFG','B','b') --[AbCDEFG];將所有B對應替換為b

      select REPLACE('ABCDEFG-Bc','BC','*') --[A*DEFG-*];將所有BC對應替換為一個*,不區分大小寫

      --判斷某字符存在

      select CHARINDEX('456','123456789')

      select CHARINDEX('1','235694526') --[0];判斷1是否存在

      select CHARINDEX('1','12314510215985') --[1];1出現的位置

      select CHARINDEX('1','12314510215985',8) --[10];從第八個字符查找,1在字符串中出現的位置

      --起始位置,支持匹配表達式

      select patindex('456', '123456789') --[0];

      select patindex('456%', '123456789') --[0];

      select patindex('%456%', '123456789') --[4];

      select patindex('12%', '123456789') --[1];

      select patindex('__3%', '123456789') --[1];

      select patindex('%[js]%','hsdjgjsrgsdgfjt')--返回j或s中第一個字符出現的位置

      select patindex('%[^js]%','ssjjgjsrgsdgfjt')--返回不是j和s外第一個字符出現的位置

      print '開始執行輸出'

      go

      waitfor delay '00:00:05' --5秒後執行

      print '延時執行輸出'

      go

      waitfor time '12:00:00' --12點執行

      print '定時執行輸出'

      go

      --遠程連接

      select * from openrowset('sqloledb','servername';'username';'password',dbname.dbo.tablename)

      select * from opendatasource('sqloledb','data source=ip(or servername);user id=username;password=password')。dbname.dbo.tablename

      --當前日期加一個月

      select convert(varchar(10),dateadd(m,1,getdate()),120)

      select dateadd(m,1,getdate())

      --取得當前年月的最後一天

      select dateadd(d,-1,convert(datetime,convert(varchar(7),dateadd(m,1,getdate()),120) + '-01'))

      --取得當前年月第一日

      select convert(datetime,convert(varchar(7),getdate(),120)+ '-01',120)

      --取得今年第一個月

      select convert(varchar(4),getdate(),120)+'-01'

      --取得當前年月的前一個月

      select convert(varchar(7),dateadd(m,-1,getdate()),120)

      --當前季度的第一天

      select dateadd(quarter, datediff(quarter,0,getdate()), 0)

      --本年的最後一天

      select dateadd(ms,-3,dateadd(yy, datediff(yy,0,getdate())+1, 0))

      --判斷是否閏年

      select case day(dateadd(mm, 2, dateadd(ms,-3,dateadd(yy, datediff(yy,0,getdate()), 0)))) when 28 then '平年' else '閏' end

      select case datediff(day,datename(year,getdate())+'-02-01',dateadd(mm,1,datename(year,getdate())+'-02-01')) when 28 then '平年' else' 閏年' end

      /*查看對象或表是否存在*/

      --查看與表相關的所有其他對象

      select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%tb%'

      --查看當前數據庫所有表

      select name from sysobjects where xtype='u' and status>=0

      select * from information_schema.tables where table_type='base table'

      --查看指定表的所有數據列

      select name from syscolumns where id=object_id('tablename')

      select column_name from information_schema.columns where table_name='tablename'

      --查看當前數據庫所有視圖

      select * from information_schema.views --(有定義 )

      select * from dbo.sysobjects where objectproperty(id, n'isview') = 1

      select * from dbo.sysobjects where type='v'

      -- 判斷數據庫是否存在

      if exists(select 1 from master.dbo.sysdatabases where name=n'ghhg')

      select * from mastersysdatabases --數據庫

      -- 判斷臨時表是否存在

      if object_id(n'tempdb[#temp_table]') is not null

      if exists (select * from tempdb.dbo.sysobjects where id = object_id(n'[tempdb].[dbo].[#temp_table]'))

      -- 判斷作業是否存在

      if exists (select job_id from msdb.dbo.sysjobs_view where name ='jobname')

      order by NAME collate Chinese_PRC_Stroke_CS_AS_KS_WS

      /*sqlserver分組不能以text,ntext,image類型的字段作為分組依據*/

      --強制查詢使用索引:

      select id from table_name with(index(索引名)) where num=@num

      --全文檢索(name like '%abc%')(substring(cal_name ,1,3)='abc')

      select id from t where charindex('abc',cal_name ) > 0

      --查看對象的定義

      sp_helptext name

      --中文漢字筆畫從少到多排列

      select * from table_name order by cal_name collate chinese_prc_stroke_ci_as

      --任意前10條記錄

      select top 10 * from table_name order by newid()

      --添加序號時必須有into語句

      select identity(int,1,1) id, * into #table_name from table_name

      --錢10~20行數據

      select top 10 * from (select top 20 * from #table_name order by id asc) as new_tab_name order by id desc

      --隨機取出10條數據

      select top 10 * from table_name order by newid()

      --將字串值重復指定的次數。

      SELECT REPLICATE ( 'K' ,5 ) --KKKKK

      --統計有多少個漢字

      select datalength('kk中國123')-len('kk中國123')

      select nullif('kk','kk') --相等為null,否則取第一個

      select isnull(null,'kk') --第一個值不為空取第一個,否則為第二個

      select coalesce(null,null,'kk','中國') --返回第一個非空值

      --小數取整

      select CEILING(12.7)--[13];取大於12.7的最小整數

      select CEILING(12.2)--[13];取大於12.2的最小整數

      select FLOOR(12.7)--[12];取小於12.7的最大整數

      select FLOOR(12.2)--[12];取小於12.2的最大整數

      select round(12.77,0)--[13.00];四捨五入,0位小數

      select round(12.24,1)--[12.20];四捨五入,1位小數

      --按位置替換

      select STUFF ( 'ABCDEFG' , 2 , 0 ,'-' )--[A-BCDEFG];第二個位置,取字符長度為0,替換為-

      select STUFF ( 'ABCDEFG' , 2 , 1 ,'b' )--[AbCDEFG];第二個位置,取字符長度為1,替換為b

      select STUFF ( 'ABCDEFG' , 2 , 2 ,'*' )--[A*DEFG];第二個位置,取字符長度為2,替換為*

      --按相同字符替換

      select REPLACE('ABCDEFG','B','b')--[AbCDEFG];將所有B對應替換為b

      select REPLACE('ABCDEFG-Bc','BC','*')--[A*DEFG-*];將所有BC對應替換為一個*,不區分大小寫

      --判斷某字符存在

      select CHARINDEX('456','123456789')

      select CHARINDEX('1','235694526')--[0];判斷1是否存在

      select CHARINDEX('1','12314510215985')--[1];1出現的位置

      select CHARINDEX('1','12314510215985',8)--[10];從第八個字符查找,1在字符串中出現的位置

      --起始位置,支持匹配表達式

      select patindex('456', '123456789')--[0];

      select patindex('456%', '123456789')--[0];

      select patindex('%456%', '123456789')--[4];

      select patindex('12%', '123456789')--[1];

      select patindex('__3%', '123456789')--[1];

      select patindex('%[js]%','hsdjgjsrgsdgfjt')--返回j或s中第一個字符出現的位置

      select patindex('%[^js]%','ssjjgjsrgsdgfjt')--返回不是j和s外第一個字符出現的位置

      print '開始執行輸出'

      go

      waitfor delay '00:00:05' --5秒後執行

      print '延時執行輸出'

      go

      waitfor time '12:00:00' --12點執行

      print '定時執行輸出'

      go

      --遠程連接

      select * from openrowset('sqloledb','servername';'username';'password',dbname.dbo.tablename)

      select * from opendatasource('sqloledb','data source=ip(or servername);user id=username;password=password')。dbname.dbo.tablename

      --當前日期加一個月

      select convert(varchar(10),dateadd(m,1,getdate()),120)

      select dateadd(m,1,getdate())

      --取得當前年月的最後一天

      select dateadd(d,-1,convert(datetime,convert(varchar(7),dateadd(m,1,getdate()),120) + '-01'))

      --取得當前年月第一日

      select convert(datetime,convert(varchar(7),getdate(),120)+ '-01',120)

      --取得今年第一個月

      select convert(varchar(4),getdate(),120)+'-01'

      --取得當前年月的前一個月

      select convert(varchar(7),dateadd(m,-1,getdate()),120)

      --當前季度的第一天

      select dateadd(quarter, datediff(quarter,0,getdate()), 0)

      --本年的最後一天

      select dateadd(ms,-3,dateadd(yy, datediff(yy,0,getdate())+1, 0))

      --判斷是否閏年

      select case day(dateadd(mm, 2, dateadd(ms,-3,dateadd(yy, datediff(yy,0,getdate()), 0)))) when 28 then '平年' else '閏' end

      select case datediff(day,datename(year,getdate())+'-02-01',dateadd(mm,1,datename(year,getdate())+'-02-01')) when 28 then '平年' else' 閏年' end

      /*查看對象或表是否存在*/

      --查看與表相關的所有其他對象

      select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%tb%'

      --查看當前數據庫所有表

      select name from sysobjects where xtype='u' and status>=0

      select * from information_schema.tables where table_type='base table'

      --查看指定表的所有數據列

      select name from syscolumns where id=object_id('tablename')

      select column_name from information_schema.columns where table_name='tablename'

      --查看當前數據庫所有視圖

      select * from information_schema.views --(有定義 )

      select * from dbo.sysobjects where objectproperty(id, n'isview') = 1

      select * from dbo.sysobjects where type='v'

      -- 判斷數據庫是否存在

      if exists(select 1 from master.dbo.sysdatabases where name=n'ghhg')

      select * from mastersysdatabases --數據庫

      -- 判斷臨時表是否存在

      if object_id(n'tempdb[#temp_table]') is not null

      if exists (select * from tempdb.dbo.sysobjects where id = object_id(n'[tempdb].[dbo].[#temp_table]'))

      -- 判斷作業是否存在

      if exists (select job_id from msdb.dbo.sysjobs_view where name ='jobname')

      [sql] view plaincopyprint?

      /*

      DBCC FREEPROCCACHE --清除執行計劃緩存

      DBCC DROPCLEANBUFFERS WITH NO_INFOMSGS --清除緩沖區

      set statistics profile on

      set statistics io on

      set statistics time on

      set statistics profile off

      set statistics io off

      set statistics time off

      */

      /*

      DBCC FREEPROCCACHE --清除執行計劃緩存

      DBCC DROPCLEANBUFFERS WITH NO_INFOMSGS --清除緩沖區

      set statistics profile on

      set statistics io on

      set statistics time on

      set statistics profile off

      set statistics io off

      set statistics time off

      */

      [sql] view plaincopyprint?

      --已知表名查數據庫名

      declare @Table table(DB sysname,TabName sysname)

      insert @Table

      exec sp_msforeachdb 'select ''?'' as DB,Name as 表名 from [?]sysobjects where type=''U'' and Name =''fjda'''

      select * from @Table

      --已知表名查數據庫名

      declare @Table table(DB sysname,TabName sysname)

      insert @Table

      exec sp_msforeachdb 'select ''?'' as DB,Name as 表名 from [?]sysobjects where type=''U'' and Name =''fjda'''

      select * from @Table

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved