gpt4 book ai didi

sql - 列中的撇号和括号

转载 作者:行者123 更新时间:2023-11-29 14:38:05 34 4
gpt4 key购买 nike

我在 postgreSQL 中连接两列,但不知道如何完成这项任务。我希望能够在括号中获取“Lot_Size”并在数字中添加撇号 s。

select concat("Builder",' ', "Lot_Size") as "NewColumn" from MyTable

NewColumn
Macys 55
Blue Goose 65
Blue Mesa 75

我想要得到的结果:

Macys (55's)
Blue Goose (65's)
Blue Mesa (75's)

最佳答案

你可以试试这个。要连接 ',您必须使用 ''

select "Builder" ||' ('|| "Lot_Size" || '''s)' as "NewColumn" from MyTable

关于sql - 列中的撇号和括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41269653/

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