要执行删除操作的 MySQL 查询,其中 id 是最大的?
由于我们只需要删除一个 ID,因此你可以为此使用带有 LIMIT 1 的 ORDER BY DESC 命令。
我们首先创建一个表 -
mysql> create table DemoTable ( UserId int, UserName varchar(20) ); Query OK, 0 rows affected (0.57 sec)
使用插入命令在表中插入记录 -
mysql> insert into DemoTable values(100,'John'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values(234,'Mike'); Query OK, 1 row affected (0.28 sec) mysql> insert into DemoTable values(145,'Sam'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values(278,'Carol'); Query OK, 1 row affected (0.24 sec) mysql> insert into DemoTable values(289,'David'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values(277,'Bob'); Query OK, 1 row affected (0.14 sec)
使用选择命令在表中显示记录 -
mysql> select *from DemoTable;
这会产生以下输出 -
+--------+----------+ | UserId | UserName | +--------+----------+ | 100 | John | | 234 | Mike | | 145 | Sam | | 278 | Carol | | 289 | David | | 277 | Bob | +--------+----------+ 6 rows in set (0.00 sec)
以下是删除 ID 最大记录的查询 -
mysql> delete from DemoTable order by UserId DESC limit 1; Query OK, 1 row affected (0.15 sec)
让我们在表中显示所有记录,以便检查最大的 ID 是否已经删除。在此,id 289 已成功删除 -
mysql> select *from DemoTable;
这会产生以下输出 -
+--------+----------+ | UserId | UserName | +--------+----------+ | 100 | John | | 234 | Mike | | 145 | Sam | | 278 | Carol | | 277 | Bob | +--------+----------+ 5 rows in set (0.00 sec)
广告