Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
CREATE USER
CREATE USER username@hostname IDENTIFIED BY password;
localhost
CREATE USER hr_manager@localhost IDENTIFIED BY 'secret';
CREATE USER hr_manager@'%' IDENTIFIED BY 'secret';
DROP USER
DROP USER username@hostname;
DROP USER hr_manager@localhost;