赞
踩
转自:https://blog.csdn.net/ws0513/article/details/49980547
https://zhidao.baidu.com/question/313665822.html
总结如下:
【drop table table_name】或【drop table if exists table_name】 删除表。表占用空间全部释放。
【delete from table_name】可加where limit等部分删除记录,若不加where等,删除整个表,返回被删除记录数。
若存在自增id 删除表后,恢复成1;若不想这样后加【where 1】或【where true】。
记录日志能回滚。
不会删表空间结构。
【truncate table table_table】table关键字可选,返回0不返回记录数。
若存在自增id 删除表后,恢复成1。
速度快,不记录日志不能回滚。
恢复初始空间
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。