MySQL ON DUPLICATE KEY UPDATE while inserting a result set from a query(MySQL ON DUPLICATE KEY UPDATE 同时从查询中插入结果集)
问题描述
我正在从 tableONE 查询并尝试将结果集插入 tableTWO.这有时会导致 tableTWO 中出现重复键错误.所以我想ON DUPLICATE KEY UPDATE 使用tableONE 结果集中的新确定值,而不是使用ON DUPLICATE KEY UPDATE columnA = columnA 来忽略它.
I am querying from tableONE and trying to insert the result set into tableTWO. This can cause a duplicate key error in tableTWO at times. So i want to ON DUPLICATE KEY UPDATE with the NEW determined value from the tableONE result set instead of ignoring it with ON DUPLICATE KEY UPDATE columnA = columnA.
INSERT INTO `simple_crimecount` (`date` , `city` , `crimecount`)(
SELECT
`date`,
`city`,
count(`crime_id`) AS `determined_crimecount`
FROM `big_log_of_crimes`
GROUP BY `date`, `city`
) ON DUPLICATE KEY UPDATE `crimecount` = `determined_crimecount`;
# instead of [ON DUPLICATE KEY UPDATE `crimecount` = `crimecount`];
它返回一个错误,说明如下
It returns an error saying the following
Unknown column 'determined_crimecount' in 'field list'
推荐答案
问题是在重复键子句中不能使用任何分组函数(如COUNT.但是,有一个简单的解决这个问题的方法.您只需将 COUNT(crime_id) 调用的结果分配给一个变量,您可以在重复的键子句中使用该变量.然后您的插入语句将看起来像这样:
The problem is that in the duplicate key clauses you cannot use any grouping functions (such as COUNT. However, there is an easy way around this problem. You just assign the result of the COUNT(crime_id) call to a variable, which you can use in the duplicate key clauses. Your insert statement would then look like this:
INSERT INTO `simple_crimecount` (`date` , `city` , `crimecount`)(
SELECT
`date`,
`city`,
@determined_crimecount := count(`crime_id`) AS `determined_crimecount`
FROM `big_log_of_crimes`
GROUP BY `date`, `city`
) ON DUPLICATE KEY UPDATE `crimecount` = @determined_crimecount;
我创建了一个 SQL Fiddle,向您展示它是如何工作的:SQL-Fiddle
I have create an SQL Fiddle that shows you how it works: SQL-Fiddle
您也可以使用 UPDATE crimecount = VALUES(crimecount) 并且没有变量:
You could also use UPDATE crimecount = VALUES(crimecount) and no variables:
INSERT INTO `simple_crimecount` (`date` , `city` , `crimecount`)(
SELECT
`date`,
`city`,
count(`crime_id`) AS `determined_crimecount`
FROM `big_log_of_crimes`
GROUP BY `date`, `city`
) ON DUPLICATE KEY UPDATE `crimecount` = VALUES(crimecount);
请参阅 SQL-Fiddle-2
See the SQL-Fiddle-2
这篇关于MySQL ON DUPLICATE KEY UPDATE 同时从查询中插入结果集的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL ON DUPLICATE KEY UPDATE 同时从查询中插入结果集
基础教程推荐
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 无法解决整理冲突 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
