sqlserver中分區函數 partition by與 group by 區別 刪除關鍵字段重複列

來源:互聯網
上載者:User

標籤:bsp   欄位   nbsp   post   sele   並且   rank   部分   over   

partition  by關鍵字是分析性函數的一部分,它和彙總函式(如group by)不同的地方在於它能返回一個分組中的多條記錄,而彙總函式一般只有一條反映統計值的記錄,

partition  by用於給結果集分組,如果沒有指定那麼它把整個結果集作為一個分組。

partition by 與group by不同之處在於前者返回的是分組裡的每一條資料,並且可以對分組資料進行排序操作。後者只能返回彙總之後的組的資料統計值的記錄。

 

用法 : select *,ROW_NUMBER() over( partition by Name order by Score )  as newrow
from table

刪除關鍵字段重複列

@newtable  ---表名 

@key  --自增列

@repeate  ---查重複的關鍵字段

delete ‘ [email protected]+‘ where ‘ [email protected]+‘ in(select ‘ [email protected]+‘ from (select *,RANK() over(partition by ‘[email protected]+‘  order by ‘[email protected]+‘ ) as newrow from ‘[email protected]+‘) nt where nt.newrow>1)

sqlserver中分區函數 partition by與 group by 區別 刪除關鍵字段重複列

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.