create new table from existing table with data in sql server

Solutions on MaxInterview for create new table from existing table with data in sql server by the best coders in the world

showing results for - "create new table from existing table with data in sql server"
Ethel
03 Oct 2018
1INSERT INTO new_table
2SELECT * FROM old_table
3
Tim
26 Jun 2016
1CREATE TABLE florist 
2AS SELECT
3  *
4FROM product
5WHERE category = ’flower’;
6