如何在 MySQL 中从 3 列和 GROUP 中进行选择而不重复条目?
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UNION 运算符将消除重复项。
The UNION operator will eliminate duplicates.