Hi all,
I have a table that looks something like below
street_id | address_number | address_direction | address_street | address_type ...
----------------------------------------------------------------------------------
1 | 121 | W | Fake | St
1 | 131 | W | Fake | St
1 | 200 | W | Fake | St
2 | 321 | N | Fake | St
2 | 131 | N | Fake | St
2 | 500 | N | Fake | St
Can anyone help me come up with a query that would help me display the data like below?
street_id | address_low_range | address_high_range | address_direction | address_street | address_type ...
----------------------------------------------------------------------------------
1 | 121 | 200 | W | Fake | St
2 | 131 | 500 | N | Fake | St
Thanks in advance