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
delete from TableName should do the trick
delete from TableName
DROPing the table will remove the colums too.