下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
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最?。簊electmin(field1asminvaluefromAUNIONUNION運(yùn)算符通過組合其他兩個(gè)結(jié)果表(TABLE1TABLE2)ALLUNION一起使用時(shí)(UNIONALL),TABLE1TABLE2BEXCEPTEXCEPTTABLE1TABLE2ALLEXCEPT(EXCEPTALL)CINTERSECTINTERSECT運(yùn)算符通過只包括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)計(jì)信息) 在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目標(biāo)表名:b(Access可用insertintob(a,b,c)selectd,e,ffrom3、說明:跨數(shù)據(jù)庫之間表的拷貝(具體數(shù)據(jù)使用絕對(duì)路徑(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ù)范圍時(shí)包括了邊界值,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開始時(shí)間,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的進(jìn)行特殊的處理。為一個(gè)標(biāo)識(shí)列,如果top后還有具體的字段,這樣做是非常有好處的。因?yàn)檫@樣可以避免top的字段如果是邏輯索引的,查詢的結(jié)果后實(shí)際表中的不一致(邏輯索引中的數(shù)據(jù)有可 14、說明:前10條記錄 selecttop10*formtable1where范圍 15、說明:選擇在每一組b值相同的數(shù)據(jù)中對(duì)應(yīng)的a最大的記錄的所有信息(類似這樣的用法可以用用法可以用 每 榜,每月熱銷產(chǎn)品分析,按科目成 ,等等 selecta,b,cfromtablenametawherea=(selectmax(a)fromtablenametbwhere 16、說明:包括所有在TableA中但不在TableB和TableC中的行并消除所有重復(fù)行而 (selectafromtableA)except(selectafromtableB)except(selectafromtableC) 17、說明:隨機(jī)取出10條數(shù)據(jù) selecttop10*fromtablenameorderbynewid() selectnewid() 1),deletefromtablenamewhereidnotin(selectmax(id)fromtablenamegroupby 2),selectdistinct*intotempfrom deletefrom insertintotablenameselect*fromtemp 評(píng)價(jià):這種操作牽連大量的數(shù)據(jù)的移動(dòng),這種做法不適合大容量但數(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等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 農(nóng)田灌溉工程施工合同三篇
- 《保護(hù)文物》課件
- 帶人帶心的領(lǐng)導(dǎo)藝術(shù)(博商課件)
- 建筑結(jié)構(gòu)檢測(cè)鑒定技術(shù)概述(東錦內(nèi)部培訓(xùn)課件)pl
- 2024-2025學(xué)年年八年級(jí)數(shù)學(xué)人教版下冊(cè)專題整合復(fù)習(xí)卷第21章 二次根式復(fù)習(xí)卷(24年中考題匯編)-
- 《軟件技術(shù)基礎(chǔ)》課件
- 2024-2025學(xué)年江蘇省淮安市洪澤區(qū)西順河小學(xué)等四校聯(lián)考譯林版(三起)五年級(jí)上冊(cè)12月月考英語試卷(原卷版)-A4
- 2024.11.7 高一英語延慶區(qū)2024-2025學(xué)年第一學(xué)期期中試卷 解析版(2)(1)-A4
- 《供應(yīng)鏈經(jīng)營管理》課件
- 2024年浙江省中考英語試卷
- 黑孔制程簡(jiǎn)介
- 科室質(zhì)量管理臺(tái)賬總
- 國家開放大學(xué)《土木工程力學(xué)(本)》形考作業(yè)1-5參考答案
- 舊廠房改造調(diào)研分析報(bào)告
- 漢語拼音書寫紙(打印版).
- NJRD系列軟起動(dòng)器出廠參數(shù)設(shè)置表
- 黑龍江醫(yī)藥公司目錄
- 2021-2022無錫市六年級(jí)數(shù)學(xué)上冊(cè)期末試卷真題
- 銷售合同風(fēng)險(xiǎn)與防范培訓(xùn)(共40頁).ppt
- 情景劇《皇帝選妃》
- 2020年領(lǐng)導(dǎo)干部個(gè)人有關(guān)事項(xiàng)報(bào)告表
評(píng)論
0/150
提交評(píng)論