gpt4 book ai didi

PostgreSQL VALUES 语句的 MySQL 模拟?

转载 作者:可可西里 更新时间:2023-11-01 08:55:02 25 4
gpt4 key购买 nike

在 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 中的模拟?

最佳答案

MySQL 不支持使用 VALUES 的(标准)行构造函数。它支持 INSERT 语句,但绝不作为“独立”语句。

关于PostgreSQL VALUES 语句的 MySQL 模拟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6324052/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com