Collections:
Predefined User Accounts in MySQL
What Are the Predefined User Accounts in MySQL?
✍: FYIcenter.com
There is only one predefined user account called "root":
Here is a tutorial exercise to check the "root" user account:
>cd \mysql\bin
>mysql -u root
mysql> USE mysql;
Database changed
mysql> SELECT User, Password, Shutdown_priv, Create_priv
-> FROM user WHERE User = 'root';
+------+----------+---------------+-------------+
| User | Password | Shutdown_priv | Create_priv |
+------+----------+---------------+-------------+
| root | | Y | Y |
+------+----------+---------------+-------------+
1 row in set (0.00 sec)
⇒ Adding a New User Account in MySQL
⇐ What Is a User Account in MySQL
2017-09-08, 2418🔥, 0💬
Popular Posts:
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
Where to find answers to frequently asked questions on Transaction Management: Commit or Rollback in...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...