2017年6月12日
摘要: 程度从强到弱 1、drop table tb drop将表格直接删除,没有办法找回 2、truncate (table) tb 删除表中的所有数据,不能与where一起使用 3、delete from tb (where) 删除表中的数据(可制定某一行) 区别:truncate和delete的区别 阅读全文
posted @ 2017-06-12 09:54 邢帅杰 阅读(283) 评论(0) 推荐(0) 编辑