如何在 MySQL 中从 3 列和 GROUP 中进行选择而不重复条目?

发布于 2024-12-12 09:45:41 字数 466 浏览 1 评论 0原文

我有 3 列,其中包含游戏类型名称...看起来像:

+-------------+-------------+----------+
| genre1      | genre2      |  genre3  |
+-------------+-------------+----------+
| Action      |   Shooter   |          |
| Action      |             |          |
| Sport       |             |          |
| Adventure   |             |          |
| Action      |  Adventure  | Strategy |

我的问题是,如何在一列中获取所有名称以进行不重复的输出,例如:

Action
Shooter
Sport
Adventure
Strategy

I have 3 columns with game genre names... looks like:

+-------------+-------------+----------+
| genre1      | genre2      |  genre3  |
+-------------+-------------+----------+
| Action      |   Shooter   |          |
| Action      |             |          |
| Sport       |             |          |
| Adventure   |             |          |
| Action      |  Adventure  | Strategy |

My question is, how to get all the names in one column for output without duplicates, like:

Action
Shooter
Sport
Adventure
Strategy

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

行至春深 2024-12-19 09:45:41

UNION 运算符将消除重复项。

SELECT genre1 AS genre FROM YourTable
UNION
SELECT genre2 AS genre FROM YourTable
UNION
SELECT genre3 AS genre FROM YourTable

The UNION operator will eliminate duplicates.

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