Syntax

DROP SECRET secret_name;

Parameters

Parameter or ClauseDescription
secret_nameThe name of the secret to be dropped.

Examples

CREATE SECRET mysql_pwd WITH ( backend = 'meta' ) AS '123';
----RESULT
CREATE_SECRET

DROP SECRET mysql_pwd;
----RESULT
DROP_SECRET

See also