I have data in a table "customer
" like
ID NAME CITY
11 John A
12 Peter B
13 Robin A
14 Steve C
15 Methew D
16 Matt C
17 Nancy C
18 Oliver D
I want the query that only shows the data for every 2 customers that are in the same city.
Output should be,
ID NAME CITY
11 John A
13 Robin A
15 Methew D
18 Oliver D