DATABASE MANAGEMENT SYSTEM
Table: ITEM
Table: CUSTOMER C_ID Customer Name City I_ID
(i) To display the details of those Customers whose city is Delhi
Ans: Select all from Customer Where City=”Delhi”
(ii) To display the details of Item whose Price is in the range of 35000 to 55000 (Both values included).
Ans: Select all from Item Where Price>=35000 and Price <=55000
(iii) To display the Customer Name, City from table Customer, and Item Name and Price from table Item, with their correspondingmatching I_ID.
Ans: Select Customer Name, City, ItemName, Price from Item, Customer where Item.I_ID=Customer.I_ID.
(iv) To increase the Price of all Items by 1000 in the table Item.
Ans: Update Item set Price=Price+1000
(v) SELECT DISTINCT City FROM Customer.
Ans: City Delhi, Mumbai, Bangalore
(vi) SELECT Item Name, MAX(Price), Count(*) FROM Item GROUP BY Item Name; Ans: Item Name Max(Price) Count(*) Personal Computer 37000 3 Laptop 57000 2
(vii) SELECT Customer Name, Manufacturer FROM Item, Customer WHERE Item.Item_Id=Customer.Item_Id;
Ans: Customer Name Manufacturer Name
N.Roy PQR
H.Singh XYZ
R.Pandey COMP
C.Sharma PQR
K.Agarwal ABC
(viii) SELECT Item Name, Price * 100 FROM Item WHERE
Manufacturer = ‘ABC’;
Ans: Item Name Price*100
Personal Computer 3500000
Laptop 5500000
0 Comments