As with updating a record, always use the `WHERE` clause when deleting records. ```SQL DELETE FROM <tablename> WHERE id = <id>; ```