delete from statement in SQL

The delete statement removes one or more records from a table. 
```
delete from Person where ID = 1;
```