取最新列的数据,也就是time最大的数据,这个就是表的基础数据,select* from A
select* from A where time=(select max(time) from A )
怎么算最新?
select* from A
where time=(select max(time) from A)