mysql 中 根据时间获取最后插入的数据selectt.* from table t ORDER BY t.createTime DESCLIMIT 0,1
mysql 中 根据时间获取最后插入的数据
select t.* from table t ORDER BY t.createTime DESC LIMIT 0,1;
mysql 中 根据时间获取最后插入的数据
select t.* from table t ORDER BY t.createTime DESC LIMIT 0,1;