SELECT TOP 子句用于规定要返回的记录的数目。
SELECT TOP 子句对于拥有数千条记录的大型表来说,是非常有用的。
注释:并非所有的数据库系统都支持 SELECT TOP 子句。
SELECT TOP number|percent column_name(s) FROM table_name;
SELECT column_name(s) FROM table_name LIMIT number;
SELECT * FROM Persons LIMIT 5;
SELECT column_name(s) FROM table_name WHERE ROWNUM <= number;
SELECT * FROM Persons WHERE ROWNUM <=5;
在本教程中,我们将使用 Web3 样本数据库。
下面是选自 "Websites" 表的数据:
mysql> SELECT * FROM Websites; +----+---------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+---------------+---------------------------+-------+---------+ | 1 | Google | https://www.google.cm/ | 1 | USA | | 2 | 淘宝 | https://www.taobao.com/ | 13 | CN | | 3 | 芝麻教程 | http://www.web3.xin/ | 5000 | USA | | 4 | 微博 | http://weibo.com/ | 20 | CN | | 5 | Facebook | https://www.facebook.com/ | 3 | USA | | 7 | stackoverflow | http://stackoverflow.com/ | 0 | IND | +----+---------------+---------------------------+-------+---------+
下面的 SQL 语句从 "Websites" 表中选取头两条记录:
SELECT * FROM Websites LIMIT 2;
执行以上 SQL,数据如下所示:
mysql> select * from websites limit 2; +----+--------+-------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------+-------------------------+-------+---------+ | 1 | Google | https://www.google.cm/ | 1 | USA | | 2 | 淘宝 | https://www.taobao.com/ | 13 | CN | +----+--------+-------------------------+-------+---------+ 2 rows in set (0.00 sec)
在 Microsoft SQL Server 中还可以使用百分比作为参数。
下面的 SQL 语句从 "Customers" 表中选取前面 50% 的记录:
SELECT TOP 50 PERCENT * FROM Websites;