SQLite Expert 删除表数据并重置自动增长列

用下面的语句肯定是行不通的,语句不支持

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 基本使用


下一篇:hibernate的基本使用