MySQL is a relational database management system. A relational database stores data in different tables instead of putting all data in one large warehouse, which increases speed and flexibility.
#The SQL language used by MySQL is the most commonly used standardized language for accessing databases. MySQL software adopts a dual licensing policy and is divided into community version and commercial version. Due to its small size, fast speed, low total cost of ownership, and especially the characteristics of open source, MySQL is generally chosen as the website database for the development of small and medium-sized websites.
What are the default username and password for MySQL?
Answer:
The default username is root, and the default password is empty.
user = “root”;passwor=“”;
The above is the detailed content of What is the default password for mysql. For more information, please follow other related articles on the PHP Chinese website!