Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张表:国家和列 Country 和 Status 我希望仅根据 Country 列中的值更新 Status 列中的值。像这样
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'