PRODUCTS
1 Create the above table products
add constraints Pid -primary key,Qty default 10,Company not null
2 Insert a new product
3 Update the price of all the product by 2%
4 Increase the price of the product 105 by 4000
5 Display the structure of the table
6 Update the company name of a1 to sony
7 Delete the product where PID = 110 from the PRODUCTS table.
8 Retrieve all products from the PRODUCTS table.
9 Display only the PNAME and PRICE of all products.
10 Show all products where PRICE is greater than 10,000.
11 Retrieve all products where QTY is between 10 and 50.
12 Find all products ordered in the year 2023.
13 Retrieve all products sorted by PRICE in descending order.
14 Display PNAME, PRICE, and a new column Discounted_Price
(90% of the original price) using aliasing (AS).
15 Show the total number of products available in the PRODUCTS table.
16 Find products with price range 10000 and 20000
17 Display the products in ascending order of company name
18 Display the name of companies without repetition
19 Display the pname price and company of prodcut 101,105,108
20 Display the maximum price of products of each company