MySQL更新查询中“字段列表"错误中的未知列

Unknown column in #39;field list#39; error on MySQL Update query(MySQL更新查询中“字段列表错误中的未知列)
本文介绍了MySQL更新查询中“字段列表"错误中的未知列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试执行此更新查询时,我不断收到 MySQL 错误 #1054:

I keep getting MySQL error #1054, when trying to perform this update query:

UPDATE MASTER_USER_PROFILE, TRAN_USER_BRANCH
SET MASTER_USER_PROFILE.fellow=`y`
WHERE MASTER_USER_PROFILE.USER_ID = TRAN_USER_BRANCH.USER_ID
AND TRAN_USER_BRANCH.BRANCH_ID = 17

这可能是一些语法错误,但我已经尝试使用内部连接和其他更改,但我一直收到相同的消息:

It's probably some syntax error, but I've tried using an inner join instead and other alterations, but I keep getting the same message:

Unknown column 'y' in 'field list' 

推荐答案

尝试对 "y" 使用不同的引号,因为标识符引号字符是反引号 (`").否则 MySQL认为"您指向名为y"的列.

Try using different quotes for "y" as the identifier quote character is the backtick ("`"). Otherwise MySQL "thinks" that you point to a column named "y".

另见 MySQL 5 文档

这篇关于MySQL更新查询中“字段列表"错误中的未知列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)