如何检索表格的最后一行,该表格没有任何唯一ID ,如
select * from sample where id=(select max(id) from sample)
答案 0 :(得分:6)
select TOP 1 * from sample order by whatever DESC
必须有一些(ORDER BY)标准来定义最后一行,否则你的请求没有意义。例如,最后一行基于AddedDateTime
表
product
列
select TOP 1 * from product order by AddedDateTime DESC