Use the DROP SECRET command to drop the secrets that store sensitive credentials.
DROP SECRET
DROP SECRET secret_name;
CREATE SECRET mysql_pwd WITH ( backend = 'meta' ) AS '123'; ----RESULT CREATE_SECRET DROP SECRET mysql_pwd; ----RESULT DROP_SECRET
Was this page helpful?