我在Mysql表中有SET数据类型字段,其中包含值SET('dog','cat','hamster')。我想将'dog'更新为'puppy',并将所有记录中的值从'dog'更改为'puppy'。谢谢。
答案 0 :(得分:0)
使用以下三个查询:
ALTER TABLE `table `CHANGE `field` `field` SET ('dog','cat','hamster', 'puppy' );
update table `table` set `field` ='puppy' where `field`='dog';
ALTER TABLE `table `CHANGE `field` `field` SET ('cat','hamster', 'puppy' );