Đây là một giải pháp:
CREATE TABLE AS
SELECT *
FROM (
SELECT ...
UNION ALL
SELECT ...
) AS foo
Bạn không thể liên kết trực tiếp cho create table
, nhưng bạn có thể đặt nó thành một lựa chọn phụ:
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