Create Table Based on Another Table


/ Published in: SQL
Save to your folder(s)

If you want to make a copy of the table including all of the data, then leave out the WHERE clause.


Copy this code and paste it in your HTML
  1. SELECT * INTO newtable FROM oldtable WHERE 1 = 0;

URL: http://stackoverflow.com/questions/18254104/how-do-i-create-a-table-based-on-another-table

Report this snippet


Comments


You need to login to view comments.