CBSE Computer Science - Revision Tour(Solved) CBSE Guess > eBooks > Class XII > CBSE Computer Science Structure Query Language Solved Revision Tour By Mr. Ravi Kiran COMPUTER SCIENCE STRUCTURED QUERY LANGUAGE Delhi 2008: Table: PRODUCT
Table: CLIENT
(i) To display the details of those Clients whose city is Delhi. Ans: Select all from Client where City=”Delhi” (ii) To display the details of Products whose Price is in the range of 50 to 100(Both values included). Ans: Select all from product where Price between 50 and 100 (iii) To display the ClientName, City from table Client, and ProductName and Price from table Product, with their corresponding matching P_ID. Ans: Select ClientName,City,ProductName, Price from Product,Client where Product.P_ID=Client.P_ID. (iv) To increase the Price of all Products by 10 Ans: Update Product Set Price=Price +10 (v) SELECT DISTINCT Address FROM Client. Ans: ( The above question may consist DISTINCT City. If it is DISTINCT City, the following is the answer)
(vi) SELECT Manufacturer, MAX(Price), Min(Price), Count(*) FROM Product GROUP BY
Manufacturer; Ans:
(vii) SELECT ClientName, ManufacturerName FROM Product, Client WHERE Client.Prod_Id=Product.P_Id; Ans:
(viii) SELECT ProductName, Price * 4 FROM Product.
![]() ![]() ![]() CBSE Computer Science Solved Revision Tour By Mr. Ravi Kiran ( mrkdata@yahoo.com ) |