Answers for "rename field while copying to another table"

0

rename field while copying to another table

CREATE TABLE `Teachers` AS(
    SELECT Student_ID AS Teacher_ID, Name, Address FROM `Students` );
Posted by: Guest on July-09-2020

Code answers related to "rename field while copying to another table"

Browse Popular Code Answers by Language