Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

consulta mySQL:Como inserir com UNION?


Você também pode "selecionar" valores literais:
mysql> select 'hello', 1;
+-------+---+
| hello | 1 |
+-------+---+
| hello | 1 |
+-------+---+
1 row in set (0.00 sec)

Portanto, você também pode usar isso em INSERT INTO ... SELECT FROM e UNION s.
INSERT INTO someTable (a, b, c) VALUES
SELECT id, name, 5
FROM someOtherTable
UNION
SELECT id, alias, 8
FROM anotherTable