用下面的语句肯定是行不通的,语句不支持
truncate table t_Records
方法:
1.删除表数据delete from t_Records where 1==1
2.重置自动增长列
update sqlite_sequence set seq=0 where name='t_Records' /*name :是表名*/
SQLite Expert软件网址:
本文共 242 字,大约阅读时间需要 1 分钟。
用下面的语句肯定是行不通的,语句不支持
truncate table t_Records
方法:
1.删除表数据delete from t_Records where 1==1
2.重置自动增长列
update sqlite_sequence set seq=0 where name='t_Records' /*name :是表名*/
SQLite Expert软件网址:
转载于:https://www.cnblogs.com/wjshan0808/p/4644915.html