gpt4 book ai didi

mySQL - 如何切换列值 - 'short' 到 'long' 和 'long' 到 'short'

转载 作者:行者123 更新时间:2023-11-29 05:37:02 27 4
gpt4 key购买 nike

我有数据库,由于与另一位开发人员混淆,我需要在一个表中更改列的值。我有一个名为 credits 的表和一个名为 credit_type 的列。

credit_type 有 2 个值 longshort

我如何替换所有long 的值以读取short,以及所有short 的值以读取?

最佳答案

update credits set credit_type = 'interim' where credit_type = 'long';
update credits set credit_type = 'long' where credit_type = 'short';
update credits set credit_type = 'short' where credit_type = 'interim';

将其全部封装在事务中以获得完全的可靠性。

关于mySQL - 如何切换列值 - 'short' 到 'long' 和 'long' 到 'short',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9824035/

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