cube、rollup及exec的用法实例
生活随笔
收集整理的這篇文章主要介紹了
cube、rollup及exec的用法实例
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
為什么80%的碼農(nóng)都做不了架構(gòu)師?>>> ??
cube、rollup及exec的用法實(shí)例
select?sdept?系部,sno?學(xué)號(hào),max(sage)?最大年齡, ? grouping(sno)?s1/**goruping是一個(gè)聚合函數(shù),其產(chǎn)生一個(gè)附加的列,當(dāng)用cube或rollup運(yùn)算符添加行時(shí),附加的列輸出值為1, ? ????????????????????當(dāng)所添加的行不是由cube或rollup產(chǎn)生時(shí),附加列值為0*/ ? from?student ? group?by?sno,sdept ? with?cube? ? select?sdept?系部,sno?學(xué)號(hào),max(sage)?最大年齡, ? grouping(sno)?s1 ? from?student ? group?by?sno,sdept ? with?rollup? ? select?sno?學(xué)號(hào),sdept?系部,avg(sage)?平均年齡, ? grouping(sno)?s1 ? from?student ? where?sgentle='男'? group?by?sdept,sno ? with?cube? ? select?sno?學(xué)號(hào),sdept?系部,avg(sage)?平均年齡, ? grouping(sno)?s1 ? from?student ? where?sgentle='男'? group?by?sdept,sno ? with?rollup? ? select?sdept,avg(sage)?from?student?where?sgentle='男'?group?by?sdept?having?avg(sage)>20 ? order?by?avg(sage)?desc? ? ? select?sno?學(xué)號(hào),sname?姓名,sage?年齡,sgentle?性別,sdept?所屬系部?from?student?where?sage>=19?and((sdept='計(jì)算機(jī)'?and?sgentle='男')?or?(sdept='外語系'?and?sgentle='女'))?order?by?sdept,sage?desc? select?sdept?系部名稱,avg(sage)?平均年齡?into?studen?from?student?where?sgentle='男'?group?by?sdept?having?avg(sage)>=20? ? ? select?*?from?class?where?ms?like?'%0!%'?escape?'!'? ? EXEC?xp_cmdshell?'bcp?stored.dbo.student?out?c:\test1.txt?-c?-T'--這個(gè)是直接導(dǎo)出一張表 ? exec?xp_cmdshell?'bcp?"select?*?from?stored..student"?queryout?c:\data.txt?-c?-T'--這個(gè)是將查詢到的結(jié)果導(dǎo)出 ? alter?table?studenttest?add?constraint?stu_snoa?primary?key?clustered(sno)--這是創(chuàng)建主鍵的方法 ? alter?table?studenttest?drop?constraint?stu_snoa--這是刪除主鍵的方法,這里其實(shí)就只是刪除了一個(gè)約束,約束一刪除主鍵就沒有了 ??
本文出自 “喬磊的博客 學(xué)習(xí) 進(jìn)步” 博客,謝絕轉(zhuǎn)載!
轉(zhuǎn)載于:https://my.oschina.net/sucre/blog/296277
總結(jié)
以上是生活随笔為你收集整理的cube、rollup及exec的用法实例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Combinations leetcod
- 下一篇: Maven 发布到本地仓库