gpt4 book ai didi

mysql - 如何在 mysql select 查询中选择静态值?

转载 作者:行者123 更新时间:2023-12-01 00:35:31 24 4
gpt4 key购买 nike

我是 mysql 的新手,在这里我试图从数据库表中获取数据。

select id,txnid,amount,status from txn_details;

通过上述查询成功获取数据,但 status 列获取 012,但我想要0 表示失败1 表示成功2 表示未处理

如何更改我的查询?

最佳答案

你可以使用case

select id, txnid, amount,
case when status = 0 then 'failed'
when status = 1 then 'success'
else 'not processed'
end as status
from txn_details;

关于mysql - 如何在 mysql select 查询中选择静态值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51959999/

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