Aug 13, 2020 3:46 pm
Write a query to display all the town names which have summer temperatures more than jaipur. the output should be sorted on the town name.
2 Replies
Aug 22, 2020 4:07 am
I hope the below will work. Any other solutions are welcome.
Select townname from Resort Inner join Town On Resort.resortID=Town.townID AND Town.SummerTemp> (Select Town.SmmerTemp where Town.towname="JAIPUR") Order By townname