Difference between revisions of "MariaDB/SQL/CREATE"
Jump to navigation
Jump to search
(Created page with "==Example== * <syntaxhighlight inline lang=SQL>CREATE USER 'roundcube'@localhost IDENTIFIED BY 'yourPasswordHere!';</syntaxhighlight>") |
|||
| Line 1: | Line 1: | ||
| + | ==Related== | ||
| + | * <code>{{l/same|DROP}}</code> deletes existing users | ||
==Example== | ==Example== | ||
* <syntaxhighlight inline lang=SQL>CREATE USER 'roundcube'@localhost IDENTIFIED BY 'yourPasswordHere!';</syntaxhighlight> | * <syntaxhighlight inline lang=SQL>CREATE USER 'roundcube'@localhost IDENTIFIED BY 'yourPasswordHere!';</syntaxhighlight> | ||
Revision as of 18:38, 16 February 2025
Related
DROPdeletes existing users
Example
CREATE USER 'roundcube'@localhost IDENTIFIED BY 'yourPasswordHere!';