---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://ydb.tech/docs/en/yql/reference/syntax/drop-user.md
  - https://ydb.tech/docs/ru/yql/reference/syntax/drop-user.md
  - href: en/yql/reference/syntax/drop-user.md
    type: text/markdown
    title: Markdown version
  - href: ../../../llms.txt
    type: text/markdown
    title: llms.txt
sourcePath: en/core/yql/reference/syntax/drop-user.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ydb.tech/docs/en/llms.txt

# DROP USER

Deletes the specified user. You can list multiple users under one operator.

Syntax:

```yql
DROP USER [ IF EXISTS ] user_name [, ...]
```

* `IF EXISTS`: Suppress an error if the user doesn't exist.
* `user_name`: The name of the user to be deleted. It also supports the ability to set a comma-separated list of users, for example: `DROP USER user1, user2, user3;`
