I have a table in a SQL db that I want to remove the data from? I want to keep the columns though.
e.g. my table has 3 columns, Name, Age, Date. I don\'t want to rem
Don't drop - it will delete the data and the definition. If you delete - the data is gone and auto-increment values go on from the last value. If you truncate - then it is like you just did create the table. No data and all counters resetted