CRUD Operations
Create, read, update, and delete data using SQL.
CRUD Operations
CRUD operations are the basic actions used by applications to manage data.
sql
INSERT INTO students (id, name) VALUES (1, 'Asha');
SELECT * FROM students;
UPDATE students SET name = 'Asha Patel' WHERE id = 1;
DELETE FROM students WHERE id = 1;