标签:
有两种方式:第一:delete from student该方式下数据库空间不一定能及时释放出来,而且如果有identity字段,之后再插入数据也不会从定义的初始值开始自增。第二:truncate table student该方式可以及时释放表空间,也能让新增数据是identity的初始值为之前建表定义的开始
删除表中的数据 SQL
原文地址:http://www.cnblogs.com/jronny/p/5723896.html