Answers for "add user mysql debian"

SQL
2

create user mysql debian 10

mysql -u root -p
--enter password--
CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE `myDB`;
GRANT ALL PRIVILEGES ON myDB . * TO 'user'@'localhost';
FLUSH PRIVILEGES;
Posted by: Guest on December-22-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language