我有一个带有列的表:
id reg mSent text
1 reg1 0 test1
2 reg2 0 test1
3 reg3 0 test1
4 reg1 0 test
我想用条件
mSent='1'
和reg=reg1
更新text=text1
我的sql语句是
UPDATE `table` SET mSent='1' where textMessage='test1' and reg='reg1'
但没有成功
最佳答案
WHERE
条件中有一个错字,您指定了字段“ textMessage”,但显然您的意思是“ text”:
UPDATE `table` SET mSent='1' where `text`='test1' and `reg`='reg1'
关于mysql - 更新mysql数据库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37326142/