摘要: 当数据库中的某张表有自增长字段的表时,当我们要清空这张表时,如果用 delete from [tablename] 时,id是不复位的。解决id复位的方法是用:truncate table [tabename]。这是自增长的id又从1开始了。 阅读全文
posted @ 2010-09-12 10:31 Lee's Blog 阅读(687) 评论(1) 推荐(0) 编辑