我试过这种方式
update message set status='Accepted' where tid=' ' and ltime=' ' and ldate=' ';
但它在语法中显示error
。
我的行是通过这三个字段唯一标识的。
答案 0 :(得分:0)
由于状态是reserved
keyword
试试这个
update message
set `status`='Accepted'
where tid=' ' and ltime=' ' and ldate=' ';