Select InTo
* it is used to copy data from one table to another.
* select data from one table and insert into new table.
Example:
Copy All column into new table.
SELECT *
INTO newtable [IN externaldb]
FROM oldtable
WHERE condition;
* it is used to copy data from one table to another.
* select data from one table and insert into new table.
Example:
Copy All column into new table.
SELECT *
INTO newtable [IN externaldb]
FROM oldtable
WHERE condition;
No comments:
Post a Comment