# PostgreSQL中删除数据

```
-- 删除 users 表中条件为id = 1 这条数
delete from users where id = 1;
```
