根据另一列的值更新表列中的值

时间:2013-09-24 11:40:43

标签: mysql mysqli

我有表:国家和列国家和地区 我希望根据Country列中的值仅更新Status列中的值。像这样的SMTH

update ban_country_ip set
checkbox = 0
where country_name = United States

此语法不起作用。

2 个答案:

答案 0 :(得分:1)

update countries
set `status`= 0
where country_name = 'United States'

答案 1 :(得分:1)

update countries set
Status = 0
where Country = 'United States'