如何取SQL结果集的第一条记录

如何取SQL结果集的第一条记录
2024-12-04 16:15:42
推荐回答(2个)
回答1:

select top 1 字段名 from 表名

回答2:

select top 1 * from table