1.

How to add users in MySQL?

Answer»

You can add a User by USING the CREATE command and SPECIFYING the necessary credentials. For EXAMPLE:

CREATE USER ‘testuser’ IDENTIFIED BY ‘sample PASSWORD’;

 



Discussion

No Comment Found