mysql 中 依据时间获取最后插入的数据

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