“Selecione em uma nova tabela mysql” Respostas de código

MySQL Selecione em nova tabela

-- Insert into existing my_table
INSERT INTO my_table my SELECT * FROM another_table an WHERE an.col1 > 10;
-- or directely create the new table
CREATE TABLE my_table AS SELECT * FROM another_table an WHERE an.col1 > 10;
VasteMonde

MySQL Criar tabela da instrução SELECT

select * into <NEW_TABLE_NAME> from <OLD_TABLE>;
Chiru Toleti

Selecione em uma nova tabela mysql

please ignore this  answer.
Akshay Malik

Respostas semelhantes a “Selecione em uma nova tabela mysql”

Perguntas semelhantes a “Selecione em uma nova tabela mysql”

Mais respostas relacionadas para “Selecione em uma nova tabela mysql” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código