DELETE Records

DELETE removes rows from a table.

DELETE FROM users WHERE age < 18;
  • Always use WHERE to target specific records
  • Omitting WHERE deletes all rows

Example:

DELETE FROM users WHERE name = 'Charlie';
← PrevNext →