sybase数据库:查询前几条记录,SQL语句该怎么写?

2024-12-14 20:12:27
推荐回答(3个)
回答1:

前十行:
select * from tableName
set rowcount 10

回答2:

select top(条数) * from table
你可以试试

回答3:

非常悲惨的告诉你,只能用set rowcount 10