Data Base Concepts
Data Base Concepts
To create a table
-> (
-> product_id char(7) primary key,
-> );
-> values('p001','cake','50','100','2024-10-20','brittania');
-> values('KC/7708','Musa','2006-11-19','XII','def.gmail.com','9868501882');
-> values('KC/7707','Rachel','2006-12-9','XII','ghi.gmail.com','7678649818');
-> values('KC/7706','Amber','2006-9-12','XII','jkl.gmail.com','8368727176');
-> values('KC/7705','Georgia','2006-5-24','XII','mno.gmail.com','8851484499');
Q2.Write the command to display a list of all the products manufactured before 1st
October 2024
Q3. Display product name and manufacturer of all the products which are not
manufactured by ‘Nestle’
Q4. Write the command to display the list of all the products whose cost is in the
range of 30 to 100.
Q5. write the command to display the list of students who were born in the year 2008
Q6.Write the command to display pname and quantity of all the products having
price above 25 with quantity less than 10
Q7.Write a command to display pname and manufacturer of all the products which
are manufactured by nestle and itc.
Q8.Display the list of all the students who are studying in class 11 or 12
Q9. Write a command list of all the products whose price does not lie in the range of
30-100