February 2018
Intermediate to advanced
510 pages
16h 10m
English
MySQL 8 provides two different ways to create accounts:
Out of these two approaches, account management statements are preferable, because they are more concise and less error-prone. Now, let's see an example of using the commands:
#1 mysql> CREATE USER 'user1'@'localhost' IDENTIFIED BY 'user1_password';#2 mysql> GRANT ALL PRIVILEGES ON *.* TO 'user1'@'localhost' WITH GRANT ...
Read now
Unlock full access