Answers for "create a new user sql in shell"

SQL
1

how to create new database user

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

create user mysql

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

create user sql

-- Creates the login AbolrousHazem with password '340$Uuxwp7Mcxo7Khy'.  
CREATE LOGIN username   
    WITH PASSWORD = 'password';  
GO  

-- Creates a database user for the login created above.  
CREATE USER AbolrousHazem FOR LOGIN AbolrousHazem;  
GO
Posted by: Guest on July-14-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language