In this article, we will practice on a Windows machine.

Go to this page to download MySQL Community v8.0.45

Similarly, watch this video to install MySQL:
Some notes when installing MySQL:

Once NodeJS is installed, npm will also be included in the package. Check whether NodeJS and npm have been successfully installed using the following two commands:
node -v
npm -v

MySQL Shell in the Windows search bar, then select MySQL Shell.

\sql to switch the Input Mode to MySQL.
\connect root@localhost
If you didn’t create a user during the MySQL installation, you can connect to the MySQL Server using the Root User. In that case, the connection string will be root@localhost, and don’t forget to enter the Root User password you set during installation.
SHOW DATABASES; command to check the result again.
\use fcajresbar; to switch to the fcajresbar database.