在PostgreSQL中,我们有VALUES statement。
例如,
VALUES (1, 'one'), (2, 'two'), (3, 'three');
相当于
SELECT 1 AS column1, 'one' AS column2
UNION ALL
SELECT 2, 'two'
UNION ALL
SELECT 3, 'three';
MySQL中的模拟是什么?
答案 0 :(得分:1)
MySQL不支持使用VALUES的(标准)行构造函数。它支持INSERT语句,但从不作为“独立”语句。