Table
a | b |
---|---|
aa | one |
aa | one |
bb | two |
bb | two |
cc | three |
select distinct
a | b |
---|---|
aa | one |
bb | two |
cc | three |
What query to write that there are only "three"?
Table
a | b |
---|---|
aa | one |
aa | one |
bb | two |
bb | two |
cc | three |
select distinct
a | b |
---|---|
aa | one |
bb | two |
cc | three |
What query to write that there are only "three"?
2
Answers
Does the following provide the expected result?
I think this will result in what you need, yet the question is unclear. If this query does not solve your issue please clarify more what you need.