Mysql-workbench

From DWIKI
Revision as of 10:39, 24 March 2025 by Tony (talk | contribs) (Created page with "=HOWTO= ==Create mysql account with password== CREATE USER 'admin'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION; flush privileges;")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

HOWTO

Create mysql account with password

CREATE USER 'admin'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;
flush privileges;