Blank
Blank
2. *INSERT Data*:
sql
INSERT INTO students (id, name, age, grade)
VALUES (1, 'John', 15, '10B');
3. *SELECT Data*:
fi
sql
SELECT * FROM students;
4. *UPDATE Data*:
sql
UPDATE students
SET age = 16
WHERE id = 1;
5. *DELETE Data*:
sql
DELETE FROM students
WHERE id = 1;
6. *WHERE Clause*:
sql
SELECT * FROM students WHERE grade = '10B';
7. *ORDER BY*:
sql
SELECT * FROM students ORDER BY name ASC;
9. *DROP Table*:
sql
DROP TABLE students;
---
## *Practical Topics*
## *Practical Preparation*
- Practice on *MS Word*: Familiarize yourself with options for Mail Merge, TOC, and Templates.
- Practice *MySQL Queries*: Install MySQL (or use an online SQL editor) and test all basic
commands.