0
我有下表:國家和列國家和狀態 我希望根據國家/地區列中的值僅更新狀態列中的值。 SMTH像這樣基於來自另一列的值的表列中的值更新
update ban_country_ip set
checkbox = 0
where country_name = United States
此語法不起作用。
我有下表:國家和列國家和狀態 我希望根據國家/地區列中的值僅更新狀態列中的值。 SMTH像這樣基於來自另一列的值的表列中的值更新
update ban_country_ip set
checkbox = 0
where country_name = United States
此語法不起作用。
update countries
set `status`= 0
where country_name = 'United States'
update countries set
Status = 0
where Country = 'United States'