Chandu
Chandu

Reputation: 871

Regarding Database data deletion from tables in mysql

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.

Upvotes: 0

Views: 49

Answers (1)

womp
womp

Reputation: 116977

Call TRUNCATE TABLE on each table.

Upvotes: 4

Related Questions