我有表:国家和列国家和地区 我希望根据Country列中的值仅更新Status列中的值。像这样的SMTH
update ban_country_ip set
checkbox = 0
where country_name = United States
此语法不起作用。
答案 0 :(得分:1)
update countries
set `status`= 0
where country_name = 'United States'
答案 1 :(得分:1)
update countries set
Status = 0
where Country = 'United States'