views:

10

answers:

1

Hi All,

I'm new to mysql. My Requirement is I have a database "sample" and there are 20 tables in it with some sample data. I want to remove all the data from all tables of that database without deleting tables or recreating them

So please help me with a solutions.

Regards Chandu.

+4  A: 

Call TRUNCATE TABLE on each table.

womp