在mysql中,用sql语句如何更新id最大的两条记录?

时间:2021-02-10 01:02:55
在mysql中,用sql语句如何更新id最大的两条记录?谢谢

5 个解决方案

#1


select * from table1 order by id desc limit 2;

#3


update tb 
set colname=xx
order by id desc limit 2

#4


update tb set col=xxx
where id in (select id from table1 order by id desc limit 2);

#5


学习中~致敬

#1


select * from table1 order by id desc limit 2;

#2


#3


update tb 
set colname=xx
order by id desc limit 2

#4


update tb set col=xxx
where id in (select id from table1 order by id desc limit 2);

#5


学习中~致敬