C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| SQL DELETE ROWLet us take an example of student. Original table: 
 If you want to delete a student with id 003 from the student_name table, then the SQL DELETE query should be like this: DELETE FROM student_name WHERE id = 003; Resulting table after SQL DELETE query: 
 
Next TopicSQL Delete All rows
 |