oracle數(shù)據(jù)庫(kù)查詢最新數(shù)據(jù)
在oracle數(shù)據(jù)庫(kù)中,我想通過rownum=1和order by update_time desc來獲取最新的一條數(shù)據(jù),用mybatis plus可以實(shí)現(xiàn)么
在oracle數(shù)據(jù)庫(kù)中,我想通過rownum=1和order by update_time desc來獲取最新的一條數(shù)據(jù),用mybatis plus可以實(shí)現(xiàn)么
2020-02-15
舉報(bào)
2020-02-17
應(yīng)該是可以實(shí)現(xiàn)的,可以用MP的條件構(gòu)造器,例如像我這么寫
你在oracle中試試,看看是否可行。
2020-02-17
直接這樣在oracle中不可行,能否通過mybatis plus得到嵌套語(yǔ)句
比如:select * from (select * from table_name order by update_time) where rownum = 1;