MySQL|mysql基础知识用法( 二 )


删除:删除全表的数据

delete from 表名称;

truncate 表名称;效率高 , 但不能回滚

【MySQL|mysql基础知识用法】删除部分行 delete from 表名称 where 条件;