这个SQL语句怎么写?将一个字段完全赋值另外一个字段的值..

时间:2021-09-03 19:19:26
表名为TABLEA.
字段A,B.
现在想更新所有记录,是的B字段的值等于A字段的值.(即将A的值赋值给B).
这个SQL语句咋写?

5 个解决方案

#1


update tablea set b = a

#2


update tablea set b = a
--或
update tablea set b = a where 条件...

#3


UPDATE TABLEA SET A=B

#4


寫錯鳥
UPDATE   TABLEA   SET   B=A

#5




--楼主在送分?

update tablea set b = a

#1


update tablea set b = a

#2


update tablea set b = a
--或
update tablea set b = a where 条件...

#3


UPDATE TABLEA SET A=B

#4


寫錯鳥
UPDATE   TABLEA   SET   B=A

#5




--楼主在送分?

update tablea set b = a