---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ydb.tech/docs/en/yql/reference/syntax/drop-user.md?version=main
  - https://ydb.tech/docs/ru/yql/reference/syntax/drop-user.md?version=main
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;`
