--->
Display total loan amount given by DYP branch.
sql>select sum(lamount) from branch,loans where branch.bno=loans.bno and bname='DYP';
Find total number of loans given by each branch.
sql>select count(lno),bname from branch,loans where branch.bno=loans.bno group by bname;
Find the name of branch that have maximum assets located in Mumbai.
sql>select max(assets),bname from branch,loans where branch.bno=loans.bno and bcity='mumbai' group by bname;
Display loan details in descending order of their amount.
sql>select * from loans orderd by lamount desc;
Display all branches located in Mumbai, Pune and Nasik.
sql>select * from branch where bcity in('mumbai','pune','nashik');
/