Answers for "duplicate the same table with a different name in sql"

SQL
0

duplicate a column in sql

ALTER TABLE Table1
ADD SubCategory2 {Type of subcategory 1} {NULL|NOT NULL} 
UPDATE Table1 SET SubCategory2 = SubCategory;
Posted by: Guest on April-23-2021

Code answers related to "duplicate the same table with a different name in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language