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.
将表中的列中的所有值复制到同一表中的另一列的最简单方法是什么?
使用单个语句(如果列具有相同的数据类型)
UPDATE <tablename> SET <destination column name> = <source column name>
此脚本将使用相应行中 field2 中的值更新 field1 中的所有值
UPDATE table SET field1 = field2