“MySQL Sélectionnez dans une nouvelle table” Réponses codées

MySQL Sélectionnez dans une nouvelle table

-- 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 Sélectionnez dans une nouvelle table

CREATE TABLE artists_and_works
  SELECT artist.name, COUNT(work.artist_id) AS number_of_works
  FROM artist LEFT JOIN work ON artist.id = work.artist_id
  GROUP BY artist.id;
Sleepy Scarab

Comment créer une table basée sur une autre table dans MySQL

Press CTRL+C to copy CREATE TABLE new_tbl [AS] SELECT * FROM orig_tbl;
Cheerful Coyote

MySQL Créer un tableau à partir de l'instruction SELECT

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

Réponses similaires à “MySQL Sélectionnez dans une nouvelle table”

Questions similaires à “MySQL Sélectionnez dans une nouvelle table”

Plus de réponses similaires à “MySQL Sélectionnez dans une nouvelle table” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code