set2
set2
(i) To display names of the items whose name starts with ‘C’ in ascending order of
Price.
(ii) To display code, Item name and City of the products whose quantity is less than 100.
(iii) To count distinct Company from the table.
(iv) To insert a new row in the table Shoppe ‘110’,’Pizza’,’Papa Jones’, 120, ”Kolkata”,
50.0
(v) Select Item from Shoppe where Item IN (“Jam”,”Coffee”);
(vi) Select Count(distinct(City)) from Shoppe;
(vii) Select MIN(Qty) from Shoppe where City=”Mumbai”;