本文介绍了(1054)“字段列表"中的未知列-MySQL错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试更新mysql中某些coloumn的单元格.

I'm try to update some coloumn's cell in mysql.

当我执行此命令时,值作为数字:

when i execute this , value as number:

update tablename set contents=1 where contensid=218;

正在工作.

但是我将值作为字符执行:

but i execute value as a character:

update tablename set contents=text where contensid=218;

我必须做些什么来更新值??

what i have to do update value as character ??

推荐答案

如果您不将文本"放在''中,则查询会认为它是表中的一列.这样做吧:

If you don't put your "text" inside '', query thinks it is a column in your table. So do this:

update tablename set contents='text' where contensid=218;

这篇关于(1054)“字段列表"中的未知列-MySQL错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 18:29