使用SQL,我如何根据条件重命名一列中的值,并保留其他值?
我试过了
select a, b,
case when a = 'specific value' then 'new_value'
else a -- keep the current value for anything else
end as c
from x;
错误:枚举"new_value"的输入值无效
与更新数据库列无关,只返回select语句
使用SQL,我如何根据条件重命名一列中的值,并保留其他值?
我试过了
select a, b,
case when a = 'specific value' then 'new_value'
else a -- keep the current value for anything else
end as c
from x;
错误:枚举"new_value"的输入值无效
与更新数据库列无关,只返回select语句
1条答案
按热度按时间hs1ihplo1#