我有一张没有PK列的表。我不应该改变这一点。还有一个数字列,可用于对行进行排序。如何在不使用任何函数的情况下选择前1行或前n行,即数据库不可知查询?
我查看了这个查询,但它对我的情况不起作用 - Can there be a database-agnostic SQL query to fetch top N rows?
答案 0 :(得分:1)
根据您链接的线程,没有太多与数据库无关的解决方案:
select * from table order by col fetch first 10 rows only
select first 10 * from table order by col
select top 10 * from table order by col
select * from table order by col limit 10
select * from (select * from table order by col) where rownum <= 10