Answers for "create database user"

SQL
1

how to create new database user

GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
Posted by: Guest on July-12-2020
5

how to create new database user

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
Posted by: Guest on April-19-2020
0

CRETE DATABASE AND ADD USER

GRANT ALL PRIVILEGES ON DATABASE guru99 TO mytest;
Posted by: Guest on June-16-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language