使用 MySQL 对 Alias 标题使用字符串函数

发布于 2024-11-05 04:14:29 字数 140 浏览 0 评论 0原文

我想使用表中的数据命名我的别名标题。这是一个完全愚蠢的例子来展示我想要做什么:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷爱 2024-11-12 04:14:31

听起来你想要的是一个枢轴 - 你的意思是对于表中的每一行,你最终都会得到一个新列,对吧?如果是这样,那么只需谷歌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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文