08 2021 档案

摘要:1、查询单条最新的记录 select * from table order by create_time limit 1; 2、查询多条的最新记录 单表查询: select type, max(create_time) from table group by type 多表查询: select t1 阅读全文
posted @ 2021-08-03 22:10 水水君 阅读(2281) 评论(0) 推荐(0)