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, 1942🔥, 0💬
Popular Posts:
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
How To Generate CREATE TABLE Script on an Existing Table in SQL Server? If you want to know how an e...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...