版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
千里之行,始于足下讓知識(shí)帶有溫度。第第2頁(yè)/共2頁(yè)精品文檔推薦sqlserver自定義函數(shù)--計(jì)算當(dāng)前月的實(shí)際天數(shù)
CreateFUNCTIONdbo.CalcDaysOfMonth(@timevarchar(6))
RETURNSint
AS
BEGIN
DECLARE@Daysint
DECLARE@Monthint
DECLARE@Yearint
SET@Year=SUBSTRING(@time,1,4)
SET@Month=SUBSTRING(@time,5,6)
if(
@Month='1'
OR@Month='3'
OR@Month='5'
OR@Month='7'
OR@Month='8'
OR@Month='10'
OR@Month='12'
)
set@Days=31
elseif(
@Month='4'
OR@Month='6'
OR@Month='9'
OR@Month='11'
)
set@Days=30;
else
if(@Year%400=0OR(@Year%4=0AND@Year%1000))
set@Days=29
else
set@Days=28
RETURN(@Days)
END
--確定某年某月有多少天
CreateFUNCTIONDaysInMonth(@datedatetime)Returnsint
AS
BEGIN
RETURNDay(dateadd(mi,-3,DATEADD(m,DATEDIFF(m,0,@date)+1,0)))
END
--哪一天是輸入時(shí)間的星期一
CreateFUNCTIONMondayInDate(@datedatetime)RETURNSDATETIME
AS
BEGIN
RETURNDATEADD(week,DATEDIFF(week,0,@date),0)
END
--輸入時(shí)間的季度的第一天
CreateFUNCTIONQuarterInDate(@datedatetime)RETURNSDATETIME
AS
BEGIN
RETURNDATEADD(quarter,DATEDIFF(quarter,0,@date),0)
END
--輸入時(shí)間的季度的天數(shù)
CreateFUNCTIONQuarterDaysInDate(@datedatetime)RETURNSINT
AS
BEGIN
declare@mtinyint,@timeSMALLDATETIME
select@m=month(@date)
select@m=casewhen@mbetween1and3then1
when@mbetween4and6then4
when@mbetween7and9then7
else10end
select@time=datename(year,@date)+'-'+convert(varchar(10),@m)+'-01'
returndatediff(day,@time,dateadd(mm,3,@time))
END
--按指定符號(hào)分割字符串,返回分割后的元素個(gè)數(shù),方法很簡(jiǎn)單,就是看字符串中存在多少個(gè)分隔符號(hào),然后再加一,就是要求的結(jié)果。
CreatefunctionGet_StrArrayLength
(
@strvarchar(1024),--要分割的字符串
@splitvarchar(10)--分隔符號(hào)
)
returnsint
as
begin
declare@locationint
declare@startint
declare@lengthint
set@str=ltrim(rtrim(@str))
set@location=charindex(@split,@str)
set@length=1
while@location0
begin
set@start=@location+1
set@location=charindex(@split,@str,@start)
set@length=@length+1
end
return@length
END
--按指定符號(hào)分割字符串,返回分割后指定索引的第幾個(gè)元素,象數(shù)組一樣便利
CreatefunctionGet_StrArrayStrOfIndex
(
@strvarchar(1024),--要分割的字符串
@splitvarchar(10),--分隔符號(hào)
@indexint--取第幾個(gè)元素
)
returnsvarchar(1024)
as
begin
declare@locationint
declare@startint
declare@nextint
declare@seedint
set@str=ltrim(rtrim(@str))
set@start=1
set@next=1
set@seed=len(@split)
set@location=charindex(@split,@str)
while@location0and@index>@next
begin
set@start=@location+@seed
set@location=charindex(@split,@str,@start)
set@next=@next+1
end
if@location=0select@location=len(@str)+1
--這兒存在兩種狀況:1、字符串不存在分隔符號(hào)2、字符串中存在分隔符號(hào),跳出while循環(huán)后,@location為0,那默認(rèn)為字
符串后邊有一個(gè)分隔符號(hào)。
returnsubstring(@str,@start,@location-@start)
END
selectdbo.Get_StrArrayStrOfIndex('8,9,4','',4)
--結(jié)合上邊兩個(gè)函數(shù),象數(shù)組一樣遍歷字符串中的元素
createfunctionf_splitstr(@SourceSqlvarchar(8000),@StrSepratevarchar(100))
returns@temptable(F1varchar(100))
as
begin
declare@chasvarchar(100)
set@SourceSql=@SourceSql+@StrSeprate
while(@SourceSql0
Select@str=REPLACE(@str,
SUBSTRING(@str,@i,1),
NCHAR(UNICODE(SUBSTRING(@str,@i,1))+@step))
,@i=PATINDEX(@patCOLLATELATIN1_GENERAL_BIN,@str)
RETURN(@str)
END
GO
declare@s1varchar(8000)
select@s1='中2-3456a78STUVabn中國(guó)opwxyz'
selectdbo.f_convert(@s1,0),dbo.f_convert(@s1,1)
函數(shù)返回值是表
createtabletest(idintprimarykey,namechar(10))
insertintotestvalues(1,'test1')
insertintotestvalues(2,'test2')
insertintotestvalues(3,'test3')
insertintotestvalues(4,'test4')
1、標(biāo)量函數(shù)
createfunctionreturn_count()
returnsint
as
begin
declare@countint
select@count=count(*)fromtest
return@count
end
--調(diào)用
selectdbo.return_count()cont--count為顯示的列頭
--運(yùn)行結(jié)果
--count
--4
2、內(nèi)嵌表值函數(shù)
createfunctionreturn_test()
returnstable
as
--begin內(nèi)聯(lián)表值函數(shù)不能用begin-end
returnselectnamefromtest
--end
--調(diào)用
select*fromreturn_test()
--運(yùn)行結(jié)果
--name
--test1
--test2
--test3
--test4
3、多語(yǔ)句表值函數(shù)
createfunctionreturn_test_multi()
returns@temptable(idint,namechar(10))
as
begin
insertinto@tempselect*fromtestwhereidin(1,2)
return--記住,一定不要遺忘寫return
end
--調(diào)用
select*fromdbo.return_test_multi()
--運(yùn)行結(jié)果
--idname
--1test1
--2test2
在查詢結(jié)果中增強(qiáng)一個(gè)自動(dòng)增長(zhǎng)的ID
selectid=identity(int,1,1),*into#TfromtestTable
select*from#T
droptable#T
sql刪除重復(fù)的記錄
打開測(cè)試數(shù)據(jù)庫(kù)test,并以表w01為例,將下面的SQL語(yǔ)句放入sql2000查詢分析器中,一段一段執(zhí)行即可看
到效果
在sql2000下創(chuàng)建測(cè)試數(shù)據(jù)表
ifexists(select*fromdbo.sysobjectswhereid=object_id(N'[dbo].[w01]')andOBJECTPROPERTY(id,N'IsUserTable')=1)
droptable[dbo].[w01]
在sql2022下創(chuàng)建測(cè)試數(shù)據(jù)表,假如是sql2022則用本段來(lái)推斷數(shù)據(jù)表是否存在
ifexists(select1fromsys.tableswherename='w01')
droptablew01
開頭創(chuàng)建測(cè)試數(shù)據(jù)庫(kù)
GO
createtablew01(gs903varchar(32),gs1002varchar(32))
insertintow01
select'1','a'
unionallselect'1','a'
unionallselect'1','a'
unionallselect'2','a'
unionallselect'2','e'
unionallselect'3','b'
unionallselect'3','d'
go
select*fromw01
go
為表w01添加一個(gè)可以表示唯一標(biāo)示的自增字段ID
altertablew01add[ID][int]IDENTITY(1,1)NOTFORREPLICATIONNOTNULL
查詢刪除前的數(shù)據(jù)和記錄數(shù):7
select*fromw01
selectcount(*)fromw01
查詢具有重復(fù)記錄的全部記錄;3
selectgs903,gs1002,count(*)ascountfromw01groupbygs903,gs1002
havingcount(*)>1
orderbycountdesc
刪除重復(fù)的數(shù)據(jù):2行
deletefromw01whereidnotin(selectmax(id)fromw01groupbygs903,gs1002)
看看刪除后還有沒有重復(fù)記錄:0
selectgs903,gs1002,count(*)ascountfromw01groupbygs903,gs1002
havingcount(*)>1
orderbycountdesc
刪除后的數(shù)據(jù)和記錄數(shù):7-2=5
select*fromw01
selectcount(*)fromw01
用SQL語(yǔ)句添加刪除修改字段
增強(qiáng)字段
altertabledocdspadddspcodechar(200)
刪除字段
AlterTABLEtable_NAMEDropCOLUMNcolumn_NAME
修改字段類型
AlterTABLEtable_nameAlterCOLUMNcolumn_namenew_data_type
改名
sp_rename
更改當(dāng)前數(shù)據(jù)庫(kù)中用戶創(chuàng)建對(duì)象(如表、列或用戶定義數(shù)據(jù)類型)的名稱。
語(yǔ)法
sp_rename[@objname=]'object_name',
[@newname=]'new_name'
[,[@objtype=]'object_type']
--假設(shè)要處理的表名為:tb
--推斷要添加列的表中是否有主鍵
ifexists(selec
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度汽車租賃公司與個(gè)人短期自駕游服務(wù)協(xié)議3篇
- 二零二五年度養(yǎng)殖場(chǎng)勞務(wù)合同(養(yǎng)殖場(chǎng)環(huán)保設(shè)施建設(shè))3篇
- 2025年度跨境電商業(yè)務(wù)承包合同3篇
- 2025年度旅游套餐分期付款購(gòu)買合同3篇
- 2025年度農(nóng)產(chǎn)品出口業(yè)務(wù)委托收購(gòu)及代理協(xié)議3篇
- 2025年度停車場(chǎng)車位資源優(yōu)化配置合同3篇
- 2025年度體育俱樂(lè)部兼職教練員聘用合同書3篇
- 二零二五年度籃球球員轉(zhuǎn)會(huì)合同變更通知3篇
- 二零二五年度公司銷售業(yè)務(wù)員協(xié)議書:環(huán)保建筑材料銷售服務(wù)合同3篇
- 二零二五年度酒店前臺(tái)禮儀與客戶滿意度勞動(dòng)合同3篇
- 2024年社會(huì)工作者《社會(huì)工作實(shí)務(wù)(中級(jí))》考試真題必考題
- FZ∕T 74001-2020 紡織品 針織運(yùn)動(dòng)護(hù)具
- MOOC 作物育種學(xué)-四川農(nóng)業(yè)大學(xué) 中國(guó)大學(xué)慕課答案
- 汽車租賃服務(wù)投標(biāo)方案(技術(shù)方案2)
- 2024年中考語(yǔ)文名著閱讀《儒林外史》內(nèi)容簡(jiǎn)介、主要人物形象及相關(guān)練習(xí)
- 流浪乞討人員救助工作總結(jié)
- 云南省昆明市盤龍區(qū)2023-2024學(xué)年高二上學(xué)期期末質(zhì)量檢測(cè)數(shù)學(xué)試題【含答案解析】
- 腎上腺皮質(zhì)功能減退通用課件
- 《安徒生童話》試題及答案
- 《社會(huì)工作概論》課件
- 化工生產(chǎn)操作工培訓(xùn)手冊(cè)
評(píng)論
0/150
提交評(píng)論