Answers for "select into a new table"

SQL
0

select new table sql

SELECT *
INTO newtable [IN externaldb]
FROM oldtable
WHERE condition;
Posted by: Guest on May-18-2021
2

SELECT INTO

SELECT * INTO nome_da_tabela_que_estao_a_mexer_BKP
	FROM nome_da_tabela_que_estao_a_mexer
Posted by: Guest on June-22-2020

Code answers related to "select into a new table"

Code answers related to "SQL"

Browse Popular Code Answers by Language