gpt4 book ai didi

mysql - 在 MySQL 中将 concat 与 as inside concat 函数一起使用

转载 作者:搜寻专家 更新时间:2023-10-30 21:58:52 26 4
gpt4 key购买 nike

我的表中有三列:firstName、lastName 和 jobTitle。我想将 firstName 和 lastName 连接为 Fullname,然后连接 Fullname 和 jobTitle。我该怎么做?

最佳答案

你会这样做:

select concat_ws(' ', firstName, lastName) as Name,
concat_ws(' ', firstName, lastName, jobTitle) as NameTitle

您不能在同一 select 中重复使用列别名,因此您必须重复表达式。

编辑:

如果您想要那种形式的一列,那么也许:

select concat(firstname, ' ', lastname, ', ', jobtitle)

关于mysql - 在 MySQL 中将 concat 与 as inside concat 函数一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26813125/

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