gpt4 book ai didi

sql - 如何在 sql server 2008 中交换列值?

转载 作者:行者123 更新时间:2023-12-01 17:40:47 24 4
gpt4 key购买 nike

我有一个名为 Employee 的表

 Eno     ename     AttributeValue      AttributeName  
1 aa a123 abc
2 bbb b123 dcf
3 cc c7sd wew3

我想将列 AttributeValue 中的数据交换到 AttributeName 并将 AttributeName 交换到 AttributeValue

例如:

Eno     ename     AttributeValue   AttributeName  
1 aa abc a123
2 bbb dcf b123
3 cc wew3 c7sd

最佳答案

UPDATE employee
SET AttributeValue = AttributeName,
AttributeName = AttributeValue

但是,除非两列具有完全相同的定义,否则您将面临丢失信息的风险。

关于sql - 如何在 sql server 2008 中交换列值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4198587/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com