हिंदी

Consider the table: ITEM Table: ITEM SNo 1 2 3 4 5 Itemname Chaises Accent Chairs Baker Racks Sofa Nightstand Type Living Living Kitchen Living Bedroom Price 11500.58 31000.67 25000.623 7000.3 NULL - Informatics Practices

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:

  1. Display all the records in descending order of Stockdate.
  2. Display the Type and total number of items of each Type.
  3. Display the least Price.
  4. Display the Itemname with their price rounded to 1 decimal place. 
कोड लेखन

उत्तर

  1. SELECT * FROM ITEM ORDER BY Stockdate DESC;
  2. SELECT Type, COUNT(Itemname) FROM ITEM GROUP BY Type;
  3. SELECT MIN (Price) FROM ITEM;
  4. SELECT Itemname, ROUND (Price, 1) FROM ITEM;
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2021-2022 (April) Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×