SQL - 从表中获取唯一的列组合
在 Oracle 中,我有一个名为“MyTable”的表。该表有“A”列和“B”列。我想找到“A”和“B”的每一个独特组合。我该怎么做?我更喜欢在 SQL 中而不是 PL/SQL 中执行此操作。
示例:
A 列 | B 列
Dog Cat
Cat Dog
Horse Cat
Dog Cat
上面的唯一组合应返回 3 行。
谢谢
In Oracle, I have a table called "MyTable". This table has columns 'A' and 'B'. I want to find every unique combination of 'A' and 'B'. How would I do this? I'd prefer to do this in SQL rather than PL/SQL.
Example:
Column A | Column B
Dog Cat
Cat Dog
Horse Cat
Dog Cat
A unique combination above should return 3 rows.
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者
or
这样做:
Do it like this: