Saturday 28 November 2020

Creating New User in MySql

Write this commands in sql workbench or cmd after opening sql

 create user 'name'@'localhost' identified by 'name';


GRANT All PRIVILEGES on * . * to 'name'@'localhost'; 

No comments:

Post a Comment