For example, I have a table named movies
. It has the fields/columns title VARCHAR(100)
and runtime INT(5)
. It's loaded with 10,000 rows of data.
I want to create another table, let's call it movies_custom
, that has all of the same columns, but with none of the data.
Is there a quick SQL statement to do this?