update a set b=d where b=c
请注意C的类型,如果是字符型要加单引号如 b='c', b='d',如果是数值型则不用,如,B=3就行了
用update set就可以了
update 表名 set 要修改的属性和值
如果你要修改具体的某列的某个属性可以在后面查出来用where
比如你说的A表中 ID为1的数据中 B列下的值修改为2
update A set B=2 where ID=1
update a set b=d
update 表A set B=D where B=C
update