Advertisements
Advertisements
प्रश्न
Consider the table: ITEM
Table: ITEM
SNo | Itemname | Type | Price | Stockdate |
1 | Chaises | Living | 11500.58 | 2020-02-19 |
2 | Accent Chairs | Living | 31000.67 | 2021-02-15 |
3 | Baker Racks | Kitchen | 25000.623 | 2019-01-01 |
4 | Sofa | Living | 7000.3 | 2020-10-18 |
5 | Nightstand | Bedroom | NULL | 2021-07-23 |
Write SQL queries for the following:
- Display all the records in descending order of Stockdate.
- Display the Type and total number of items of each Type.
- Display the least Price.
- Display the Itemname with their price rounded to 1 decimal place.
कोड लेखन
उत्तर
SELECT * FROM ITEM ORDER BY Stockdate DESC;
SELECT Type, COUNT(Itemname) FROM ITEM GROUP BY Type;
SELECT MIN (Price) FROM ITEM;
SELECT Itemname, ROUND (Price, 1) FROM ITEM;
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?