delete 删除表记录 格式1:删除所有的表记录delete from 表名; 格式2:仅删除符合条件的记录delete from 表名 where 条件; mysql> delete from user where shell is null;mysql> select * from user where shell is null;Empty set (0.00 sec) 相关文章: 2021-11-04 2022-12-23 2022-12-23 2022-12-23 2021-11-21 2022-12-23 2021-12-03 2021-10-08