On Jul 19, 2005, at 11:50 PM, chan wilson wrote:

Hi,

In MS SQL, there is a "TRUNCATE TABLE" SQL that will remove all the records of a table and make the identity back to zero.

 Is there any means to accomplish it in sqlite?


How about

DELETE FROM table;

I am assuming, by 'identity' you refer to the auto-incrementing primary key. If so, yes, SQLite will do the same thing.

Fwiw, I believe TRUNCATE TABLE does a bit more than what you are implying above. It also truncates the logs and whatnot. But, that may be neither here nor there.


--
Puneet Kishor

Reply via email to