SQL复制一个字段的值

with CTS AS(select id,Category from tblStringMap ) 
update tblStringMap set Page=(select Category from CTS where CTS.id=tblStringMap.Id)

原文地址:https://www.cnblogs.com/bulege/p/2190374.html