Dbms Exp6 Solution
Dbms Exp6 Solution
CREATE TABLE customer (cid numeric PRIMARY KEY, cname varchar, address varchar, pno varchar);
CREATE TABLE cust_order (cid numeric REFERENCES customer(cid), order_no varchar REFERENCES
sales_order_details(order_no));
3.Print the description and total qty sold for each product
6.Find out the sum total of all the billed orders for the month of January
7.Find out the name of customers who have given the order of more than 10 qty
select c.cname
from customer c
from customer c