資源描述:
《SQL Server各種函數(shù)用法》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、目錄1、altertable….add/drop….向表中添加、刪除列22、Truncate刪除表中的所有數(shù)據(jù),但不刪除表23、execsp_rename修改表名、字段名24、復(fù)制表,只復(fù)制表結(jié)構(gòu),不復(fù)制表中數(shù)據(jù)25、identity表中新增列,并自動編號36、Insert與update的用法37、行列轉(zhuǎn)換Pivot、Unpivot38、自動排序row_number、rank、dense_rank、partitionby59、字符串截取Substring,left,right610、Charinde
2、x用法711、replace替換,len顯示長度,lower大寫轉(zhuǎn)小寫,reverse逆向顯示712、ceiling進1取整,floor減1取整,round保留小數(shù)位數(shù)813、convert時間轉(zhuǎn)換(詳細顯示格式)814、時間函數(shù)datediff、dateadd比較915、時間函數(shù)datename、datepart比較1016、查詢重復(fù)記錄的代碼1017、waitfor延遲語句1018、casewhen的用法1119、將excel導(dǎo)入到sql的方法12以下摘自網(wǎng)絡(luò)171、SQL函數(shù)大全172、Wit
3、h…as用法173、配置連接服務(wù)器19由于時間問題只整理了一部分,希望對需要的人有所幫助!1、altertable….add/drop….向表中添加、刪除列altertablecastingreport--增加列add[packclass]varchar(20),[packer1]varchar(20),[floor]varchar(50)altertableaadropcolumn[address]--刪除一列2、Truncate刪除表中的所有數(shù)據(jù),但不刪除表TRUNCATETABLEaa3、ex
4、ecsp_rename修改表名、字段名語法:1、execsp_rename原表名,'新表名'2、execsp_rename'表名.[字段原名]','字段新名','column'--column表示要修改的是列字段名,引號可以不加execsp_renamepvt,pvexecsp_rename生產(chǎn),'product'--修改表名execsp_rename'product.[日期]','time','column'--修改字段名execsp_rename'aa.vid',id,'column'4、復(fù)制表
5、,只復(fù)制表結(jié)構(gòu),不復(fù)制表中數(shù)據(jù)select*intobbfromaawhere1<>1selecttop(0)*intoccfromaa5、identity表中新增列,并自動編號Selectidentity(int,1,1)asAutoID,*into#tmfromteacherorderbysalarydroptableteacherselect*intoteacherfrom#tmdroptable#tm6、Insert與update的用法例:insertintoaa(age)selectemp
6、5frompvtinsertintoopenquery([10.32.142.235],'selectlot,time,parafromtest.dbo.aa')selectlot,GETDATE(),nullfromaupdateaasetname=b.Emp5,age=b.Emp2frompvtasbwhereaa.VendorID=b.VendorIDupdatecoursesetteachername=(selectnamefromteacherswhereid=course.teacher
7、no)updateopenquery([10.32.142.235],'selectlotaslotid,whtimefromtest.dbo.aawherewhtimeisnull')setwhtime=b.timefromw_lothistoryasbwherelotid=b.lot7、行列轉(zhuǎn)換Pivot、UnpivotPivot(行轉(zhuǎn)列)執(zhí)行以下語句完成行轉(zhuǎn)列:select*from(selectname,course,scorefromtb)aspvtpivot(max(score)forc
8、oursein([語文],[數(shù)學],[物理]))asaselecta.*from(selectlot,time,eqp,substring(para,1,charindex(':',para)-1)aspara,substring(para,charindex(':',para)+1,len(para))asvaluefromaawhereeqp='檢測'andtimebetween'2012-2-9'and'2012-2-10')aspvtpivot(max(val