I have a table with following structure.
Flight_ID | Source_city | DestinatinCity
1 NYC LONDON
2 LONDON TOKYO
3 LONDON NYC
I want to found city count i.e cities involved in source and destination,
city | count
LONDON 3
NYC 2
TOKYO 1
How can I solve it using basic SQL features(Without PL).