发布网友 发布时间:2022-04-09 18:12
共7个回答
热心网友 时间:2022-04-09 19:41
select * from table where date=(select max(date) from table) 这条语句只是查找日期最大的数据,离今天最近的不能用热心网友 时间:2022-04-09 20:59
//取出今天的数据前十条热心网友 时间:2022-04-09 22:34
你把date转换成int类型,再按int类型大小排列就可以了 。。。order by热心网友 时间:2022-04-10 00:25
select top 10 * from table order by date desc热心网友 时间:2022-04-10 02:33
Select top 10 * from table order by date desc追问现不不知道是10条还是119条,不确定
热心网友 时间:2022-04-10 04:58
select * from table order by date desc热心网友 时间:2022-04-10 07:39
不会啊