慕数据7514115
2020-02-15 11:05
在oracle数据库中,我想通过rownum=1和order by update_time desc来获取最新的一条数据,用mybatis plus可以实现么
应该是可以实现的,可以用MP的条件构造器,例如像我这么写
queryWrapper.eq("rownum", 1).orderByDesc("update_time");
你在oracle中试试,看看是否可行。
直接这样在oracle中不可行,能否通过mybatis plus得到嵌套语句
比如:select * from (select * from table_name order by update_time) where rownum = 1;
MyBatis-Plus入门
56140 学习 · 381 问题
相似问题