I have a database of companies addresses (street name) like :
876 Lexington ave
703 Lexington ave
872 Lexington ave
3501 Jack Northrop Ave
3503 Jack Northrop Ave
3505 Jack Northrop Ave
And so on.....
What I am trying to do is SELECT
a row and GROUP
them by addresses/street name to get the output like : Lexington ave, Jack Northrop Ave
.
Goal is to erase the numeric street number and then GROUP them by name.
How can I achieve this with MySQL query? Any help will be highly appreciated.
Thanks