版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
千里之行,始于足下讓知識帶有溫度。第第2頁/共2頁精品文檔推薦sqlserver自定義函數(shù)--計算當(dāng)前月的實際天數(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
--哪一天是輸入時間的星期一
CreateFUNCTIONMondayInDate(@datedatetime)RETURNSDATETIME
AS
BEGIN
RETURNDATEADD(week,DATEDIFF(week,0,@date),0)
END
--輸入時間的季度的第一天
CreateFUNCTIONQuarterInDate(@datedatetime)RETURNSDATETIME
AS
BEGIN
RETURNDATEADD(quarter,DATEDIFF(quarter,0,@date),0)
END
--輸入時間的季度的天數(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
--按指定符號分割字符串,返回分割后的元素個數(shù),方法很簡單,就是看字符串中存在多少個分隔符號,然后再加一,就是要求的結(jié)果。
CreatefunctionGet_StrArrayLength
(
@strvarchar(1024),--要分割的字符串
@splitvarchar(10)--分隔符號
)
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
--按指定符號分割字符串,返回分割后指定索引的第幾個元素,象數(shù)組一樣便利
CreatefunctionGet_StrArrayStrOfIndex
(
@strvarchar(1024),--要分割的字符串
@splitvarchar(10),--分隔符號
@indexint--取第幾個元素
)
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、字符串不存在分隔符號2、字符串中存在分隔符號,跳出while循環(huán)后,@location為0,那默認為字
符串后邊有一個分隔符號。
returnsubstring(@str,@start,@location-@start)
END
selectdbo.Get_StrArrayStrOfIndex('8,9,4','',4)
--結(jié)合上邊兩個函數(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中國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、標量函數(shù)
createfunctionreturn_count()
returnsint
as
begin
declare@countint
select@count=count(*)fromtest
return@count
end
--調(diào)用
selectdbo.return_count()cont--count為顯示的列頭
--運行結(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()
--運行結(jié)果
--name
--test1
--test2
--test3
--test4
3、多語句表值函數(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()
--運行結(jié)果
--idname
--1test1
--2test2
在查詢結(jié)果中增強一個自動增長的ID
selectid=identity(int,1,1),*into#TfromtestTable
select*from#T
droptable#T
sql刪除重復(fù)的記錄
打開測試數(shù)據(jù)庫test,并以表w01為例,將下面的SQL語句放入sql2000查詢分析器中,一段一段執(zhí)行即可看
到效果
在sql2000下創(chuàng)建測試數(shù)據(jù)表
ifexists(select*fromdbo.sysobjectswhereid=object_id(N'[dbo].[w01]')andOBJECTPROPERTY(id,N'IsUserTable')=1)
droptable[dbo].[w01]
在sql2022下創(chuàng)建測試數(shù)據(jù)表,假如是sql2022則用本段來推斷數(shù)據(jù)表是否存在
ifexists(select1fromsys.tableswherename='w01')
droptablew01
開頭創(chuàng)建測試數(shù)據(jù)庫
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添加一個可以表示唯一標示的自增字段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語句添加刪除修改字段
增強字段
altertabledocdspadddspcodechar(200)
刪除字段
AlterTABLEtable_NAMEDropCOLUMNcolumn_NAME
修改字段類型
AlterTABLEtable_nameAlterCOLUMNcolumn_namenew_data_type
改名
sp_rename
更改當(dāng)前數(shù)據(jù)庫中用戶創(chuàng)建對象(如表、列或用戶定義數(shù)據(jù)類型)的名稱。
語法
sp_rename[@objname=]'object_name',
[@newname=]'new_name'
[,[@objtype=]'object_type']
--假設(shè)要處理的表名為:tb
--推斷要添加列的表中是否有主鍵
ifexists(selec
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025版關(guān)聯(lián)公司文化創(chuàng)意產(chǎn)業(yè)借款合同標準范本
- 二零二五年度木工預(yù)制構(gòu)件研發(fā)生產(chǎn)承包協(xié)議3篇
- 二零二五版學(xué)術(shù)論文著作權(quán)授權(quán)及學(xué)術(shù)交流協(xié)議3篇
- 二零二五版出租車公司投資入股及車輛運營合同3篇
- 二零二五版變壓器技術(shù)培訓(xùn)與咨詢服務(wù)合同4篇
- 專業(yè)2024年化工原料油品交易協(xié)議版A版
- 2025版跨境電子商務(wù)平臺服務(wù)合同標準范本4篇
- 黎明職業(yè)大學(xué)《招投標與合同管理》2023-2024學(xué)年第一學(xué)期期末試卷
- 二零二五年度文化演出臨時工作人員協(xié)議4篇
- 二零二五版環(huán)保型攪拌站砂石料直供采購合作協(xié)議3篇
- 心內(nèi)電生理導(dǎo)管及器械
- 保潔服務(wù)崗位檢查考核評分標準
- 稱量與天平培訓(xùn)試題及答案
- 超全的超濾與納濾概述、基本理論和應(yīng)用
- 2020年醫(yī)師定期考核試題與答案(公衛(wèi)專業(yè))
- 2022年中國育齡女性生殖健康研究報告
- 各種靜脈置管固定方法
- 消防報審驗收程序及表格
- 教育金規(guī)劃ppt課件
- 呼吸機波形分析及臨床應(yīng)用
- 常用緊固件選用指南
評論
0/150
提交評論