我们可以在单个MySQL查询中更新具有最高ID的行吗?
是的,我们可以做到。让我们首先创建一个表-
mysql> create table DemoTable ( ID int, GameScore int );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable values(15,848747); mysql> insert into DemoTable values(13,909049); mysql> insert into DemoTable values(34,98474646); mysql> insert into DemoTable values(31,948474);
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
输出结果
+------+-----------+ | ID | GameScore | +------+-----------+ | 15 | 848747 | | 13 | 909049 | | 34 | 98474646 | | 31 | 948474 | +------+-----------+ 4 rows in set (0.00 sec)
以下是在单个查询中更新具有最高ID的行的查询-
mysql> update DemoTable set GameScore=GameScore+10 ORDER BY ID DESC LIMIT 1; Rows matched : 1 Changed : 1 Warnings : 0
让我们再次检查表记录-
mysql> select *from DemoTable;
输出结果
+------+-----------+ | ID | GameScore | +------+-----------+ | 15 | 848747 | | 13 | 909049 | | 34 | 98474656 | | 31 | 948474 | +------+-----------+ 4 rows in set (0.00 sec)
热门推荐
5 甄嬛传祝福语简短
10 舅舅大婚文案祝福语简短
11 朋友节最简短祝福语
12 新年祝福语长辈简短红包
13 送花简短有内涵祝福语
14 五十二新年祝福语简短
15 毕业祝福语简短英语小学
16 五二零朋友祝福语大全简短
17 送师姐的祝福语简短
18 生日祝福语短句简短霸气