Mysql
 sql >> Database >  >> RDS >> Mysql

Problemi con la creazione di una tabella temporanea da un'unione

Ecco una soluzione alternativa:

CREATE TABLE AS
   SELECT *
   FROM (
       SELECT ...
       UNION ALL
       SELECT ...
   ) AS foo

Non puoi eseguire l'unione direttamente per create table , ma puoi impostarla come sottoselezione:

mysql> create table foo as (select * from ((select 'foo') union all (select 'bar')) as foo);
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0