create new table from old table

Solutions on MaxInterview for create new table from old table by the best coders in the world

showing results for - "create new table from old table"
Lorenzo
03 Mar 2017
1Select * into new_table  from  old_table 
2