sql DROP 和DELETE、TRUNCATE用法

DROP:删除数据库已存在的表
DROP TABLE tbname


DELETE:删除记录
delete from tbname


truncate:清空表,重置索引
truncate table tbname

原文地址:https://www.cnblogs.com/webapi/p/5704085.html