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

如题所述

第1个回答  2012-04-22
前十行:
select * from tableName
set rowcount 10
第2个回答  2014-11-19
select top(条数) * from table
你可以试试
第3个回答  2012-04-26
非常悲惨的告诉你,只能用set rowcount 10