-->
Display receipt which includes bill_no with Dish description, price, quantity and total amount of each menu.
sql>select sum(bill.total) ,menu.ddesc,menu.price,bill_menu.qnt from bill_menu where
bill.bno=bill_menu.bno and menu.dno=bill_menu.dno group by menu.ddesc,menu.price,bill_menu.qnt;
Find total amount collected by hotel on date 08/01/2013
sql>select sum(toatal) from bill where day1='8-jan-2013';
Count number of menus of billno 301.
sql>select count(ddsec)from bill,menu,bill_menu where bill.bno=bill_menu.bno and menu.dno=bill_menu.dno and bill.bno=301;
Display menu details having price between 100 and 500.
sql>select ddesc,price from menu whre price between 100 and 500;
Display total number of bills collected from each table on 01/12/2013.
sql>select sum(total),tableno from bill where day1='1-dec-2013' group by tableno;
/