比如数据1,1,2,3,3,3,4,4,5,5,6,6,6,5,5,4,4,3,2,2,2,1,1
结果为1,2,3,4,5,6,5,4,3,2,1
如果DISTINCT 后面重复的就会去掉了。
举例的数据现实情况是随机的,不是这种连续升序或降序的。
自己和自己join 然后第二个自己序号比第一个多一个
join的条件是不相等
select 第二个自己
select distinct top 13(*) from table
select distinct top 10(*) from table where 主键 not in (select top 13(主键) from talbe)