sql語句經(jīng)典用法

sql語句經(jīng)典用法

ID:42597157

大小:28.50 KB

頁數(shù):3頁

時間:2019-09-18

sql語句經(jīng)典用法_第1頁
sql語句經(jīng)典用法_第2頁
sql語句經(jīng)典用法_第3頁
資源描述:

《sql語句經(jīng)典用法》由會員上傳分享,免費在線閱讀,更多相關內容在教育資源-天天文庫。

1、2007-11-30查sql中as的用法搜索到的一些經(jīng)典的sql語句博客分類:SQLSQLCC++C#Apple總結一些工作中用到或碰到的SQL語句,希望能與大家分享,同時也希望大家能提供更多的精妙SQL語句.....1、deletetable1from(select*fromtable2)ast2wheretable1.id=t2.id2、truncatetabletable1(不在事務日志中做記錄,比deletetable快,但不能激活觸發(fā)器)3、updatetable1setcolumn=column+1whereid=(selectidfromtable2)4、updateta

2、ble1setcolumn=column+1fromtable1,table2wheretable1.id=table2.id5、selecttopn[Percent]*fromtable1'輸出百分比記錄6、selectid,column1*column2ascolumnfromtable1'可算明白as的用法了7、select*fromtable1wherecolumn1like'SQL#_G_O'escape'#''單匹配8、selecttable1.idfromtable1wherenotexists(selecttable2.idfromtable2wheretable1.i

3、d=table2.id)'這個應該比notin快一些9、selecttable1.idfromtable1,table2wheretable1.id<>table2.id'看復合查詢機制10、selecttable1.idfromtable1,table2,(selectidfromtable3)ast3wheretable1.id=table2.idandtable2.id=t3.id'有些類似[1]了......11、select*fromtable1wherecolumn1like'[A]%'orlike'[^B]%'12、select@column1=column1fromta

4、ble1;select@column1ascolumn1'存儲到自定義變量13、select*fromtable1wherecontains(column1,'char1orchar2*')'全文索引14、select*fromtable1wherecontains(column1,'前有near中有near后有')15、select*fromtable1wherecontains(column1,'formsof(inflectional,go)')'派生16、select*fromtable1wherecontains(description,'isabout(appleweigh

5、t(.9),boyweight(.8),chinaweight(.7))')'權重17、select*fromtable1wherefreetext(column1,'char')'僅支持文字不支持表達式搜索18、insertintotable1selectcolumn1,count(column1)fromtable2groupbycolumn1'統(tǒng)計-----------------------------------------------------------------------------------------1說明:復制表(只復制結構,源表名:a新表名:b)SQL:

6、select*intobfromawhere1<>12說明:拷貝表(拷貝數(shù)據(jù),源表名:a目標表名:b)SQL:insertintob(a,b,c)selectd,e,ffromb;3說明:顯示文章、提交人和最后回復時間SQL:selecta.title,a.username,b.adddatefromtablea,(selectmax(adddate)adddatefromtablewheretable.title=a.title)b4說明:外連接查詢(表名1:a表名2:b)SQL:selecta.a,a.b,a.c,b.c,b.d,b.ffromaLEFTOUTJOINbONa.a=

7、b.c5說明:日程安排提前五分鐘提醒SQL:select*from日程安排wheredatediff('minute',f開始時間,getdate())>56說明:兩張關聯(lián)表,刪除主表中已經(jīng)在副表中沒有的信息SQL:deletefrominfowherenotexists(select*frominfobzwhereinfo.infid=infobz.infid)7說明:從數(shù)據(jù)庫中去一年的各單位電話費統(tǒng)計(電話費定額和電話費清單兩個表來源)SQ

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內容,確認文檔內容符合您的需求后進行下載,若出現(xiàn)內容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。