SQLServer ntile获取每组前10%的数据

前端之家收集整理的这篇文章主要介绍了SQLServer ntile获取每组前10%的数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

比如获取每个表的前10%个字段。
<div class="codetitle"><a style="CURSOR: pointer" data="9489" class="copybut" id="copybut9489" onclick="doCopy('code9489')"> 代码如下:

<div class="codebody" id="code9489">
select id,name,colid,rn from (
select *,rn = ntile (10 )
over (partition by id order by colorder )
from syscolumns )t where rn = 1

原文链接:https://www.f2er.com/mssql/66423.html

猜你在找的MsSQL相关文章