Syntax
Parameters
Examples
See also
Manage secrets
A comprehensive guide for secret management operations, including creation, usage, and deletion.
CREATE SECRET
Create a secret
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the DROP SECRET command to drop the secrets that store sensitive credentials.
DROP SECRET secret_name;
| Parameter or Clause | Description |
|---|---|
| secret_name | The name of the secret to be dropped. |
CREATE SECRET mysql_pwd WITH ( backend = 'meta' ) AS '123';
----RESULT
CREATE_SECRET
DROP SECRET mysql_pwd;
----RESULT
DROP_SECRET
Was this page helpful?