方式一、
语法:
1.单表删除
delete from 表名 where 筛选条件
#案例:删除手机号9结尾的女生信息
delete from beauty where phone like '%9' ;
select * from beauty
方式二、
语法 不允许+where等,只能全删
truncate table 表名 ;
#案例:将魅力值>100的男生删除
truncate table boys ;
标签:删除,truncate,MySQL,表名,table,where From: https://www.cnblogs.com/liujy2233/p/16987037.html