| SQL - Questions and Answers Have a SQL question? Post it here. First do a search to see if someone hasn't already answered it. |
|
|||
Selecting multiple occurence on a tableI have a table with the following data:
Code:
TableA
Column1 Column2
1 1
1 4
1 12
2 1
2 1
2 3
3 1
3 4
4 2
4 6
4 8
4 11
4 13
The result would be: Code:
Column1 Column2
2 1
2 1
|