Showing posts with label sql. Show all posts
Showing posts with label sql. Show all posts

Thursday, September 11, 2008

Duplicating a table in MySQL

CREATE TABLE duplicate_name SELECT * FROM original_table;