tags:

views:

34

answers:

1

Mysql query for copy the struture of another table and create the table

+4  A: 

CREATE TABLE `new_table_name` LIKE `old_table_name`

Hammerite
is thats enough?thank u..
Hari kanna