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, 1505🔥, 0💬
Popular Posts:
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
What Are Bitwise Operations in SQL Server Transact-SQL? Bitwise operations are binary operations per...
What Is the Difference Between GETDATE() and GETUTCDATE() in SQL Server Transact-SQL? The difference...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...