Read and download the CBSE Class 11 Information Practices Data Manipulation Commands Worksheet in PDF format. We have provided exhaustive and printable Class 11 Informatics Practices worksheets for Chapter 8 Introduction to Structured Query Language (SQL), designed by expert teachers. These resources align with the 2025-26 syllabus and examination patterns issued by NCERT, CBSE, and KVS, helping students master all important chapter topics.
Chapter-wise Worksheet for Class 11 Informatics Practices Chapter 8 Introduction to Structured Query Language (SQL)
Students of Class 11 should use this Informatics Practices practice paper to check their understanding of Chapter 8 Introduction to Structured Query Language (SQL) as it includes essential problems and detailed solutions. Regular self-testing with these will help you achieve higher marks in your school tests and final examinations.
Class 11 Informatics Practices Chapter 8 Introduction to Structured Query Language (SQL) Worksheet with Answers
Table Creation And Data Manipulation Commands
Q1. Consider the following table named “GYM” with details about Fitness products being sold in the store :
| Prcode* | Prname** | Unitprice*** | manufacturer |
| P101 | Cross trainer | 25000 | Avon fitness |
| P102 | Treadmill | 32000 | AG fitline |
| P103 | Massage chair | 20000 | Fit Express |
| P104 | Vibration trainer | 22000 | Avon fitness |
| P105 | bike | 13000 | Fit express |
Write SQL statements to do the following :
a) Display the names of all the products in the store.
b) Display the names and unit price of all the products in the store.
c) Display the names of all the products with unit price less than Rs 200000.00
d) Display details of all the products with unit price in the range 20000 to 30000
e) Display name of all products by the manufacturer “Fit Express”.
f) Display all rows sorted in descending order of unit price.
g) Add a new row for product with the details : “P106”, “Vibro Exercise”, 23000, “Avon Fitness”.
h) Change the unit price data of all the rows by applying 10% discount reduction on all the products.
i) Display details of all products with manufacturer name starting with “A”.
* Prcode : Stores codes of Products. ** Prname : Stores names of Products *** Unit price is in Rs.
Table Creation And Data Manipulation Commands
Q1. Consider the following table “Employee”.
| Ecode | First name | Last name | Department | Salary |
| 101 | Amit | Sharma | Sales | 3000.500 |
| 102 | Shiv | Arora | Personnel | 3560 |
| 103 | Ks | Lakshmi | accounts | 1500 |
| 104 | Shivika | Rajlani | accounts | 2980.250 |
| 105 | Satvik | Thakral | sales | 5322 |
• Ecode should be declared as Primary key, Unique.
• Salary must be greater than 1000.
• First name and Last name must not remain blank.
• Make data type for “Salary” with 8 digits maximum with 3 digits decimals.
Write SQL statements to do the following :
a) Combine and display the first names and last names of all employees with Example : “Amit Sharma”
b) Display the department names , without duplicates.
c) Display all the details of employees with last names as “Lakshmi”.
d) Display all the details of employees whose last name is “Rajlani” or “Sharma”.
e) Display the codes and first names of all employees of ‘Accounts’ department.
f) Display department names of departments with salary above 18000.
g) Display First name and first letter of Lastname (Exp :Amit S.)
h) Combine and display Second name and First name where department is accounts.
i) Increase 50 OR of all the employees where salary is less than 2000.
j) Delete the records where salary is more than 5000.
k) Display all the first name, salary (round to 0 decimal place).
l) Rename the field Department to Dept.
m)Delete the column Last name.
n) Delete all the records
o) Delete the table.
Q.1 If you have to create a table CUSTOMER. Identify the required data types for each attributes : Cust_ID Customer Identification Number, Cust_Name Customer Name,Cust_Add, Customer Address, Bill_No Customer bill Number
Q.2 Create a table name as “Deptm” with the following structure :
| Field Name | Field Type | Constraint |
| D NAME | Varchar(14) | NOT NULL |
| AGE | Integer | |
| DEPT NAME | Varchar(10) | NOT NULL PRIMARY KEY |
| DOJ | Varchar(13) | |
| SALARY | Integer(5) |
(b) Write SQL Commands for the questions form (a) to (h) on the basis of table Teacher.
Table :Teacher
| Name | Age | Department | Date of join | Salary |
| Jugal | 24 | Computer | 2007-02-10 | 12000 |
| Shanti | 31 | History | 2008-03-24 | 20000 |
| Sandeep | 32 | Maths | 2009-02-25 | 14000 |
| Sangeeta | 45 | History | 2007-04-15 | 20000 |
| Rahat | 55 | Computer | 2007-05-17 | 21000 |
a) To show all information about the teacher of History department in descending order of their name .
b) To list the male teacher who are in Maths department.
c) To display Name, Salary, where age less than 25 and age equal to or more than 45.
d) Update the Salary by increasing Rs. 1000 for teachers with age more than 55.
e) To Insert a new record in table Teacher with the following data :
‘Raja’, 23, ‘Hindi’, ‘2005-08-19’,12675.
f) Write a SQL command to add following column in above table.
Column Name Data Type Size Constraint Description
Address Varchar 40 Address of the Person
g) Display the name of those teacher whose name started with alphabet ‘S’;
h) To Delete those records where Department is History.
i) Write SQL Command to drop the table Teacher.
2. Find the Output of following :
(i) SELECT ROUND (1.298,1);
(ii) SELECT POW(2,4);
(iii) SELECT LOWER(‘MYSQL QUERY LANGUAGE’);
(iv) SELECT SUBSTR(‘MYSQL LANGUAGE’, 7,8);
(v) SELECT LENGTH(‘INFORMATION’);
Table Creation And Data Manipulation Commands
Q1. Create table One with the following structure :
| Name of column | Data type | Constraints |
| Name | Varchar(20) | Not null |
| Rollno | Number(2) | Not null |
| grno | Number(5) | |
| Age | Number(2) | Should be more than 13 |
| Marks | Number(2) | Should be more than 0 |
| addr | Char(20) | Default “ISM” |
Q2. Write SQL command to display the table structure.
Q3. Add the following data in the above table(ONE) :
| Name | Rollno | Grno | Age | Marks | add |
| Anil | 2 | 1232 | 14 | 89 | Ism |
| Beena | 1 | 4353 | 15 | 90 | Ism |
| sumit | 3 | 6534 | 14 | 40 | Isd |
| vineet | 5 | 2353 | 14 | 67 | ism |
Q4. Add 5 marks for all the students.
Q5. Add 2 marks where rollno greater than 3.
Q6. Change the field name name to Sname.
Q7. Modify the Add char(20) to Char (30).
Q.8. Change the width of Grno to number(4).
Q9. Modify the grno position to first position in the table.
Q10. Update the field grno as Primary Key.
Q11.Delete the record(s) where mark is less than 50.
Q12. Remove the entire contents of the table.
Q13. Drop the table “ONE”.
Table Creation And Data Manipulation Commands
Q1. Consider the following table named “GYM” with details about Fitness products being sold in the store :
| Prcode* | Prname** | Unitprice*** | manufacturer |
| P101 | Cross trainer | 25000 | Avon fitness |
| P102 | Treadmill | 32000 | AG fitline |
| P103 | Massage chair | 20000 | Fit express |
| P104 | Vibration trainer | 20000 | Avon fitness |
| P105 | bike | 13000 | Fit express |
Write SQL statements to do the following :
a) Display the names of all the products in the store.
b) Display the names and unit price of all the products in the store.
c) Display the names of all the products with unit price less than Rs 200000.00
d) Display details of all the products with unit price in the range 20000 to 30000
e) Display name of all products by the manufacturer “Fit Express”.
f) Display all rows sorted in descending order of unit price.
g) Add a new row for product with the details : “P106”, “Vibro Exercise”, 23000, “Avon Fitness”.
h) Change the unit price data of all the rows by applying 10% discount reduction on all the products.
i) Display details of all products with manufacturer name starting with “A”.
* Prcode : Stores codes of Products. ** Prname : Stores names of Products *** Unit price is in Rs.
| CBSE Class 11 Information Practices Question Bank Of All Chapters Worksheet |
| CBSE Class 11 Information Practices Worksheet |
| CBSE Class 11 Information Practices Basic Computer Organization Worksheet |
| CBSE Class 11 Information Practices C++ Practical List Worksheet |
| CBSE Class 11 Information Practices Computer Organisation Worksheet |
| CBSE Class 11 Information Practices Introducing Python Pandas Worksheet |
| CBSE Class 11 Information Practices Introduction To Programming Worksheet |
| CBSE Class 11 Information Practices List Manipulation Worksheet |
| CBSE Class 11 Information Practices Previous Year Question Bank Worksheet |
| CBSE Class 11 Information Practices Relational Databases Worksheet |
Important Practice Resources for Class 11 Informatics Practices
CBSE Informatics Practices Class 11 Chapter 8 Introduction to Structured Query Language (SQL) Worksheet
Students can use the practice questions and answers provided above for Chapter 8 Introduction to Structured Query Language (SQL) to prepare for their upcoming school tests. This resource is designed by expert teachers as per the latest 2026 syllabus released by CBSE for Class 11. We suggest that Class 11 students solve these questions daily for a strong foundation in Informatics Practices.
Chapter 8 Introduction to Structured Query Language (SQL) Solutions & NCERT Alignment
Our expert teachers have referred to the latest NCERT book for Class 11 Informatics Practices to create these exercises. After solving the questions you should compare your answers with our detailed solutions as they have been designed by expert teachers. You will understand the correct way to write answers for the CBSE exams. You can also see above MCQ questions for Informatics Practices to cover every important topic in the chapter.
Class 11 Exam Preparation Strategy
Regular practice of this Class 11 Informatics Practices study material helps you to be familiar with the most regularly asked exam topics. If you find any topic in Chapter 8 Introduction to Structured Query Language (SQL) difficult then you can refer to our NCERT solutions for Class 11 Informatics Practices. All revision sheets and printable assignments on studiestoday.com are free and updated to help students get better scores in their school examinations.
You can download the latest chapter-wise printable worksheets for Class 11 Informatics Practices Chapter Chapter 8 Introduction to Structured Query Language (SQL) for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.
Yes, Class 11 Informatics Practices worksheets for Chapter Chapter 8 Introduction to Structured Query Language (SQL) focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.
Yes, we have provided solved worksheets for Class 11 Informatics Practices Chapter Chapter 8 Introduction to Structured Query Language (SQL) to help students verify their answers instantly.
Yes, our Class 11 Informatics Practices test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.
For Chapter Chapter 8 Introduction to Structured Query Language (SQL), regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.