gpt4 book ai didi

mysql - 在 SQL 查询 View 上使用字符串更改 ID

转载 作者:行者123 更新时间:2023-11-29 07:40:15 24 4
gpt4 key购买 nike

我有一个 SQL 查询来检索表中的几列并将它们导出到 CSV 文件中。但是,一列使用 ID(整数)。有没有办法在 SQL 查询中包含某些内容并用特定字符串替换 ID?

例如:

If ID = 1 then replace it with "Dog"
If ID = 2 then replace it with "Cat"
If ID = 3 then replace it with "Apple"

我只有四个 ID,所以不会很大。

这是我到目前为止为检索我想要的列所做的事情

SELECT col_id, check_in, start_hour, price_total, email FROM reservations LIMIT 10

最佳答案

SELECT case when col_id = 1 then 'Dog'
when col_id = 2 then 'Cat'
when col_id = 3 then 'Apple'
end as id,
check_in, start_hour, price_total, email
FROM reservations
LIMIT 10

关于mysql - 在 SQL 查询 View 上使用字符串更改 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29297774/

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