MySQL Tutorial - DELETE - Remove Data
๐๏ธ DELETE - Data Hatao
Real Life:
โ Delete account
๐๏ธ Remove post
๐ง Delete message
๐ Cancel order
Syntax
DELETE FROM table_name
WHERE condition;
โ ๏ธ Danger!
WHERE nahi lagaya toh sab data delete ho jayega!
Permanent delete - undo nahi ho sakta!
Example
DELETE FROM students
WHERE id = 5;