在SELECT语句中使用TOP的一些小技巧
类别: 数据库教程
It\'s well-known.Microsoft SQL Server 7.0增加了一个语句top,可以限制返回的记录数。但是在使用的时候,有时候会遇到一些问题。
比如希望返回前三名的比分,但是第三名有并列的,使用select top 3 * from table order by score的话就只能返回三条记录,在这样的情况下,就可以使用select top 3 with ties * from table order by score
还有,有的时候我不希望出现重复的记录,那么可以使用select distinct top 3 * from table order by score
比如希望返回前三名的比分,但是第三名有并列的,使用select top 3 * from table order by score的话就只能返回三条记录,在这样的情况下,就可以使用select top 3 with ties * from table order by score
还有,有的时候我不希望出现重复的记录,那么可以使用select distinct top 3 * from table order by score
- 上一篇: SQL SERVER下数据库链接的使用方法
- 下一篇: 如何编程实现备份数据库
-= 资 源 教 程 =-
文 章 搜 索