SHOW CREATE USER
View the CREATE USER statement. This statement returns the SQL required to recreate a user account with its authentication details.
Syntax
SHOW CREATE USER [user-name]Description
Examples
CREATE USER foo4@test require cipher 'text'
issuer 'foo_issuer' subject 'foo_subject';
SHOW CREATE USER foo4@test\G
*************************** 1. row ***************************
CREATE USER 'foo4'@'test'
REQUIRE ISSUER 'foo_issuer'
SUBJECT 'foo_subject'
CIPHER 'text'See Also
Last updated
Was this helpful?

