Advertisements
Advertisements
प्रश्न
Consider the table ORDERS as given below:
O_ID | C_Name | Product | Quantity | Price |
1001 | Jitendra | Laptop | 1 | 12,000 |
1002 | Mustafa | Smartphone | 2 | 10,000 |
1003 | Dhwani | Headphone | 1 | 1,500 |
Note: The table contains many more records than shown here.
Write the following queries:
- To display the total Quantity for each Product, excluding Products with total Quantity less than 5.
- To display the orders table sorted by total price in descending order.
- To display the distinct customer names from the Orders table.
- Display the sum of Price of all the orders for which the quantity is null.
लघु उत्तरीय
उत्तर
- select Product, sum(Quantity) from orders group by product having sum(Quantity)>=5;
- select * from orders order by Price desc;
- select distinct C_Name from orders;
- select sum(price) as total_price from orders where Quantity IS NULL;
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?