使用 MySQL 对 Alias 标题使用字符串函数
我想使用表中的数据命名我的别名标题。这是一个完全愚蠢的例子来展示我想要做什么:
SELECT id AS CONCAT('id_', name)
这会给我输出 id_5 => 5.(如果表中ID为5)
I want to name my Alias titles using data from my tables. Here's a totally stupid example to show what I want to do:
SELECT id AS CONCAT('id_', name)
Which would give me the output id_5 => 5. (if ID was 5 in the table)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来你想要的是一个枢轴 - 你的意思是对于表中的每一行,你最终都会得到一个新列,对吧?如果是这样,那么只需谷歌mysql枢纽(抱歉,我习惯了sqlserver)
Sounds like what you're after is a pivot - you mean that for each row in the table, you would end up with a new column, right? If so, then just google mysql pivot (sorry, I'm used to sqlserver)