Answers for "how do i change the name of the table in sql server"

SQL
19

rename table sql

ALTER TABLE STUDENTS  
RENAME TO ARTISTS;
Posted by: Guest on June-04-2020
-1

change name of colum in sql table

ALTER TABLE "table_name" RENAME COLUMN "column 1" TO "column 2";
Posted by: Guest on September-11-2020

Code answers related to "how do i change the name of the table in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language