How To Copy Table In MSSQL Database Server Tutorial Example
Run microsoft sql server management studio query editor or any client tools you like then copy & paste the below code to copy a table from another table usinq sql command or statement in MSSQL Database Server Tutorial Example
/*
CREATE TABLE executives
(
lastname varchar(50) NOT NULL,
department varchar(50) NULL,
join_date date NULL,
salary numeric(18, 0) NOT NULL
) ON [PRIMARY]
*/
SELECT * INTO executives_bak
FROM executives
-- 'executives_bak' is the copy table
-- 'executives' is the original table
/* */ is multiline code comment :: before alter create a table executives using blocked sql code, if it is not created yet. -- is comment in MSSQL -- in fact it is comment in Oracle and MySQL as well

No comments:
Post a Comment
leave your comments here..