apple=# create table test(id integer, info text); CREATE TABLE apple=# insert into test select generate_series(1, 100000), md5('test'); INSERT 0 100000 apple=# select * from test limit 1; id | info ----+---------------------------------- 1 | 098f6bcd…
https://www.tutorialspoint.com/sqlite/sqlite_truncate_table.htm Unfortunately, no TRUNCATE TABLE in SQLite but DELETE to delete complete data from an existing table,though it is recommended to use DROP TABLE to drop complete table and re-create it on…