> For the complete documentation index, see [llms.txt](https://doc.tanmer.cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.tanmer.cn/shu-ju-ku/postgresql/ji-chu-zhi-shi/postgresql-zhong-shan-chu-shu-ju.md).

# PostgreSQL中删除数据

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