gpt4 book ai didi

mysql选择静​​态列表

转载 作者:行者123 更新时间:2023-11-29 01:47:22 24 4
gpt4 key购买 nike

我想经营一个

INSERT ... SELECT

Manual

查询将一个表中的1 个选定的列列与 2 行的确切数量插入到另一个表中。

除此之外,我想插入一个额外的静态值列。

示例

| selected column | static val |
Variable 4
Variable 9

静态值 4 和 9 在我的 php 脚本中指定。我可以在 1 个 mysql 查询中执行此操作,而不使用 php 来存储临时数据吗?

最佳答案

您可以使用 UNION ALL 从源表中选择两次,如下所示:

insert into new_table
select column, 4 from old_table
union all
select column, 9 from old_table;

关于mysql选择静​​态列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3394840/

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