MySQL - insert data from another table merged with constants(MySQL - 从与常量合并的另一个表中插入数据)
问题描述
我有一个包含一些数据的临时表 (products_temp),我还有另一个表(产品)需要插入数据.我需要在新记录上手动设置一些常量,例如 vendor_id=1 等...
I have a temporary table (products_temp) with some data, and I have another table (products) I need to insert the data into. I have some constants I need to set manually on new records, like vendor_id=1, etc...
是否可以在一个请求中插入临时表数据和常量?
Is it possible to do the insertion with the temporary table data and the constants in one request?
temp_products:
temp_products:
product_name | product_desc | category_name | mf_name ...
产品(category_name,mf_name 不在):
products (category_name, mf_name is not in):
product_id | product_name | product_desc | vendor_id | distributor_id ...
常量:
vendor_id=1, distributor_id=2
推荐答案
使用 INSERT ... SELECT
语句,您在其中选择常量值以及来自 products_temp
的数据:
Use an INSERT ... SELECT
statement where you are selecting constant values as well as data from products_temp
:
INSERT INTO products (product_data, vendor_id)
SELECT data, '1' FROM products_temp
这篇关于MySQL - 从与常量合并的另一个表中插入数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL - 从与常量合并的另一个表中插入数据
基础教程推荐
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01