我每一段时间会Insert一个表格
有ID、工号栏,并且我会加上 新增的日期
请问我要怎么写SQL来取得最新的表格
当然我会不用日期来指定,有没有function可以直接将表最后的日期传入
让我得到时间最新的表
select * from t where t.createTime=(select createTime from t order by createTime desc limit 1)