下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
CREATEDATABASEdatabase-dropdatabase3sql---USEEXECsp_addumpdevice'disk','testBack',---BACKUPDATABASEpubsTOcreatetabletabname(col1type1[notnull][primarykey],col2type2[notA:createtabletab_newliketab_old使用舊表創(chuàng)建新表B:createtabletab_newasselectcol1,col2…fromtab_olddefinitiondroptableAltertabletabnameaddcolumncol注:列增加后將不能刪除。DB2varchar7AltertabletabnameaddprimaryAltertabletabnamedropprimary8、說明:創(chuàng)建索引:create[uniqueindexidxnameon刪除索引:dropindex9、說明:創(chuàng)建視圖:createviewviewnameasselect刪除視圖:dropview10sql選擇:select*fromtable1where插入:insertintotable1(field1,field2刪除:deletefromtable1where更新:updatetable1setfield1=value1where查找:select*fromtable1wherefield1like’%value1%like的語法很精妙,查資料排序:select*fromtable1orderbyfield1,field2總數(shù):selectcountastotalcountfrom求和:selectsum(field1assumvaluefrom平均:selectavg(field1)asavgvaluefrom最大:selectmax(field1asmaxvaluefrom最小:selectmin(field1asminvaluefromAUNIONUNION運算符通過組合其他兩個結(jié)果表(TABLE1TABLE2)ALLUNION一起使用時(UNIONALL),TABLE1TABLE2BEXCEPTEXCEPTTABLE1TABLE2ALLEXCEPT(EXCEPTALL)CINTERSECTINTERSECT運算符通過只包括TABLE1TABLE2ALL隨INTERSECT(INTERSECTALL)A、left(outer)左外連接(左連接):SQL:selecta.a,a.b,a.c,b.c,b.d,b.ffromaLEFTOUTJOINbONa.a=B:right(outer)C:full/cross(outer)12、分組:Group組相關(guān)的信息:(統(tǒng)計信息) 在SQLServertext,ntext,imageselectesp_detach_db;附加數(shù)據(jù)庫:sp_attach_dbsp_renamedb'old_name',結(jié)構(gòu),源表名:a新表名:b(Access可用法一:select*intobfromawhere1<>1(法二:selecttop0*intobfrom2、說明:拷貝表(拷貝數(shù)據(jù),源表名:a目標表名:b(Access可用insertintob(a,b,c)selectd,e,ffrom3、說明:跨數(shù)據(jù)庫之間表的拷貝(具體數(shù)據(jù)使用絕對路徑(Access可用insertintob(abc)selectd,e,ffrombin具體數(shù)據(jù)庫where例子:..frombin'"&Server.MapPath(".")&"\data.mdb&"'4、說明:子查詢(1:aselecta,b,cfromawhereaIN(selectdfromb)或者selecta,b,cfromawhereaselecta.title,a.username,b.adddatefromtablea,(selectmax(adddate)adddatefromtablewheretable.title=a.title)b 6、說明:外連接查詢(表名1:a表名2:b) selecta.a,a.b,a.c,b.c,b.d,b.ffromaLEFTOUTJOINbONa.a=b.c 7、說明:視圖查詢(表名1:a) select*from(SELECTa,b,cFROMa)Twheret.a>1; 8、說明:between的用法,between限制查詢數(shù)據(jù)范圍時包括了邊界值,notbetween不包 select*fromtable1wheretimebetweentime1andtime2 selecta,b,c,fromtable1whereanotbetween數(shù)值1and數(shù)值2 9、說明:in的使用方法 select*fromtable1wherea[not]in(‘值1’,’值2’,’值4’,’值6’) deletefromtable1wherenotexists(select*fromtable2where table1.field1=table2.field1) select*fromaleftinnerjoinbona.a=b.brightinnerjoincona.a=c.cinnerjoindona.a=d.dwhere..... 12、說明:日程安排提前提醒 SQL:select*from日程安排wheredatediff('minute',f開始時間,getdate())>5 13、說明:一條sql語句搞定數(shù)據(jù)庫分頁 selecttop10b.*from(selecttop20主鍵字段,排序字段from表名orderby排序字段desc)a,表名bwhereb.主鍵字段=a.主鍵字段orderbya.排序字段 關(guān)于數(shù)據(jù)庫分頁 declare@startint,@end @sql set@sql=’selecttop’+str(@end-@start+1)+’+fromTwhereridnottop’+str(@str-1)+’RidfromTwhereRid>-execsp_executesqltop的進行特殊的處理。為一個標識列,如果top后還有具體的字段,這樣做是非常有好處的。因為這樣可以避免top的字段如果是邏輯索引的,查詢的結(jié)果后實際表中的不一致(邏輯索引中的數(shù)據(jù)有可 14、說明:前10條記錄 selecttop10*formtable1where范圍 15、說明:選擇在每一組b值相同的數(shù)據(jù)中對應(yīng)的a最大的記錄的所有信息(類似這樣的用法可以用用法可以用 每 榜,每月熱銷產(chǎn)品分析,按科目成 ,等等 selecta,b,cfromtablenametawherea=(selectmax(a)fromtablenametbwhere 16、說明:包括所有在TableA中但不在TableB和TableC中的行并消除所有重復(fù)行而 (selectafromtableA)except(selectafromtableB)except(selectafromtableC) 17、說明:隨機取出10條數(shù)據(jù) selecttop10*fromtablenameorderbynewid() selectnewid() 1),deletefromtablenamewhereidnotin(selectmax(id)fromtablenamegroupby 2),selectdistinct*intotempfrom deletefrom insertintotablenameselect*fromtemp 評價:這種操作牽連大量的數(shù)據(jù)的移動,這種做法不適合大容量但數(shù)據(jù)操作 altertable addcolumn_bint deletefromtablenamewherecolumn_bnotin( selectmax(column_b)fromtablenamegroupbycolumn1,column2,...) altertabletablenamedropcolumncolumn_b selectnamefromsysobjectswheretype='U'//U代表用 selectnamefromsyscolumnswhere22type、vender、pcstype字段排列,caseselect中的caseselecttype,sum(casevenderwhen'A'thenpcselse0e
溫馨提示
- 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)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 承包外賣合同范本
- 2023年天津北方演藝集團所屬事業(yè)單位(國有文藝院團)招聘工作人員筆試真題
- 2023年六安市中醫(yī)院招聘筆試真題
- 名宿裝修合同范本
- 工程委托合同范本
- 外科護理(第3版)課件 第三十一章 關(guān)節(jié)脫位病人的護理
- 外科護理(第3版)課件 第三十三章 頸肩痛及腰腿痛病人的護理
- 倉庫拆遷合同范本
- 鄭州技術(shù)交易合同范本
- 稅收經(jīng)典案例分析
- 班級文化建設(shè)研究課題研究報告
- 學(xué)而思寒假七年級尖子班講義第5講二元一次方程組進階
- 淺議周記在班務(wù)工作中妙用
- 生物、地理會考背誦計劃表
- 國民經(jīng)濟統(tǒng)計學(xué) 第3章中間消耗及投入產(chǎn)出核算
- 課程設(shè)計(論文)3kta梨果醬車間工藝設(shè)計
- 畢業(yè)設(shè)計(論文)長沙辦公樓空調(diào)系統(tǒng)設(shè)計
- 第三章電阻材料
- 體育科學(xué)研究方法(第三版)第07章實驗法
- 公務(wù)員考試遴選、選調(diào)考試答題卡練字方格(A4紙可直接打印)
- 物理“有效作業(yè)“設(shè)計與使用研究課題結(jié)題報告
評論
0/150
提交評論