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 soluti开发者_运维问答ons.
Regards Chandu.
Call TRUNCATE TABLE
on each table.
精彩评论