标签:nbsp oracle 语法 mit rac acl mysql limit rownum sql
SQL Server 2008 R2不支持limit
可用:select top 3 * from Websites2
SELECT *
FROM Persons
LIMIT 5;
SELECT *
FROM Persons
WHERE ROWNUM <=5;
SQL Server 2008 R2不支持limit(限制行数)
标签:nbsp oracle 语法 mit rac acl mysql limit rownum sql
原文地址:http://www.cnblogs.com/POLzj/p/5998848.html