MySQL 批量更新数据
Posted jerrygogo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 批量更新数据相关的知识,希望对你有一定的参考价值。
语法:updat table_name set
column_name1 = case id
when 1 then \'a\'
when 2 then \'b\'
when 3 then \'c\'
end,
colunm_name = case id
when 1 then \'d\'
when 2 then \'e\'
when 3 then \'f\'
end
where id in (1,2,3);
以上是关于MySQL 批量更新数据的主要内容,如果未能解决你的问题,请参考以下文章