摘要:
程度从强到弱 1、drop table tb drop将表格直接删除,没有办法找回 2、truncate (table) tb 删除表中的所有数据,... 阅读全文
posted @ 2019-06-01 15:07
码农编程进阶笔记
阅读(136)
评论(0)
推荐(0)
摘要:
程度从强到弱 1、drop table tb drop将表格直接删除,没有办法找回 2、truncate (table) tb 删除表中的所有数据,不能与where一起使用 3、delete from tb (where) 删除表中的数据(可制定某一行) 区别:truncate和delete的区别 阅读全文
posted @ 2019-06-01 15:07
码农编程进阶笔记
阅读(1021)
评论(0)
推荐(0)