重新启动数据库,再测试了另外一个表,删除比较快,但是执行次数显示执行了3次。
root@127.0.0.1:4000[hqh]>show create table t\G
*************************** 1. row ***************************
Table: t
Create Table: CREATE TABLE `t` (
`id` int(11) NOT NULL,
`name` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`) /*T![clustered_index] NONCLUSTERED */
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin
1 row in set (0.01 sec)
root@127.0.0.1:4000[hqh]>select count(0) from t;
+----------+
| count(0) |
+----------+
| 1 |
+----------+
1 row in set (0.00 sec)
root@127.0.0.1:4000[hqh]>drop table t;
Query OK, 0 rows affected (0.23 sec)
这个执行次数相差这么大吗?