用下面的语句肯定是行不通的,语句不支持
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软件网址: http://www.sqliteexpert.com/
2022-08-15 19:22:55
用下面的语句肯定是行不通的,语句不支持
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软件网址: http://www.sqliteexpert.com/
下一篇:hibernate的基本使用