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, 2958🔥, 0💬
Popular Posts:
How To Get Help Information from the Server in MySQL? While you are at the "mysql>" prompt, y...
How To Select All Columns of All Rows from a Table in Oracle? The simplest query statement is the on...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
Where to find answers to frequently asked questions on Managing Security, Login and User in SQL Serv...
How to print value on console in SQL Server Transact-SQL? How to use the PRINT statements? In Transa...