Advertisements
Advertisements
प्रश्न
Consider a table PRODUCT with the following data:
Table: PRODUCT | |||||
SNO | Itemname | Company | Stockdate | Price | Discount |
1 | Monitor | HP | 2021-12-20 | 15499.739 | 15 |
2 | Webcam | Logitech | 2020-02-03 | 4890.90 | 5 |
3 | Keyboard | Logitech | 2022-08-19 | 1878.985 | 30 |
4 | Mouse | HCL | 2021-05-16 | 1200.00 | 7 |
5 | Speakers | iBall | 2021-10-19 | NULL | 25 |
Write SQL queries using SQL functions to perform the following operations:
- Display the first 3 characters of all Itemnames.
- Display the names of all items whose Stockday is "Monday".
- Display the total price of all the products.
- Display the maximum Price.
- Display the average Price of all the products by the company named 'Logitech'.
लघु उत्तरीय
उत्तर
Select left(item name,3) from product;
Select item name from product where day name (stock date) = 'Monday';
Select sum(price) from product;
Select max(price) from product;
Select avg(price) from product where company = 'Logitech';
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?