Sql commands: Difference between revisions
From James's Wiki
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
FLUSH PRIVILEGES; | FLUSH PRIVILEGES; | ||
show users: | |||
use mysql; | |||
SELECT user FROM user; |
Latest revision as of 17:21, 23 December 2021
SHOW DATABASES;
DROP DATABASE <database name>;
CREATE DATABASE <database name>;
CREATE USER '<username>'@'localhost' IDENTIFIED BY '<password>';
GRANT ALL PRIVILEGES ON <database_name>.* TO 'username'@'localhost';
SHOW GRANTS FOR 'username'@'localhost';
DROP USER 'username'@'localhost';
FLUSH PRIVILEGES;
show users:
use mysql; SELECT user FROM user;