欢迎来到福编程网,本站提供各种互联网专业知识!
您的位置:网站首页 > 数据库 > MsSql2005

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

发布时间:2009-08-29 作者: 来源:转载
sqlserver2005有关键字ntile(x)和over(partitionby..orderby..)子句配合.
比如获取每个表的前10%个字段。
复制代码 代码如下:
select id , name , colid , rn from (
select * , rn = ntile (10 )
over (partition by id order by colorder )
from syscolumns )t where rn = 1

相关推荐