2

谁能解释一下如何用同一张表(在sql中)中另一列的值替换一列的值。难道我们没有像在 foxpro 数据库中那样在 SQL 中使用 Replace All 吗?

谢谢

4

1 回答 1

6

Just a regular update statement:

UPDATE MyTable Set Column1 = Column2
于 2012-06-18T18:27:24.333 回答