sq 2005l查询问题 表字段:id,打印时间,手册编号 想查询最后一次打印的手册编号是多少,应该怎么写
发布网友
发布时间:2022-05-04 11:41
我来回答
共2个回答
热心网友
时间:2023-10-22 11:22
可以这样来查询
select 手册编号 from table1 where 打印时间 = (select max(打印时间) from table1)
或
select top 1 手册编号 from table1 order by 打印时间 desc
热心网友
时间:2023-10-22 11:23
select 手册编号 from table order by 打印时间 desc
热心网友
时间:2023-10-22 11:22
可以这样来查询
select 手册编号 from table1 where 打印时间 = (select max(打印时间) from table1)
或
select top 1 手册编号 from table1 order by 打印时间 desc
热心网友
时间:2023-10-22 11:23
select 手册编号 from table order by 打印时间 desc
热心网友
时间:2023-10-22 11:22
可以这样来查询
select 手册编号 from table1 where 打印时间 = (select max(打印时间) from table1)
或
select top 1 手册编号 from table1 order by 打印时间 desc
热心网友
时间:2023-10-22 11:23
select 手册编号 from table order by 打印时间 desc