A Scenario to Ponder #11
This time it's a pretty interesting scenario to solve. I have a table called the distance_tbl holding distance between different cities.
Here is the table definition:
create table #distance_tbl (city1 char(1), city2 char(1), distance int)
And the sample data: