web-dev-qa-db-fra.com

sélectionner dans mysql

Je suis un utilisateur de MSSQL et maintenant je convertis ma base de données en MySQL. J'écris la requête suivante dans MySQL:

select * into new_tbl from tbl

Et j'obtiens l'erreur suivante

Error : Undeclared variable new_tbl

Comment une telle requête doit-elle être correctement écrite dans MySQL?

68
Mandeep Singh

Utilisez la syntaxe CREATE TABLE SELECT.

http://dev.mysql.com/doc/refman/5.0/en/create-table-select.html

CREATE TABLE new_tbl SELECT * FROM orig_tbl;
106
Dave K

En MySQL, ça devrait être comme ça

INSERT INTO this_table_archive (col1, col2, ..., coln)
SELECT col1, col2, ..., coln
FROM this_table
WHERE entry_date < '2011-01-01 00:00:00';

Documentation MySQL

81
MuhammadHani