How to Install MySQL on Windows code example
Example 1: mysql install windows 10
Just go to
https://dev.mysql.com/downloads/installer/
Choose your os and version
Follow the Microsoft instaler(msi) steps and install.
Its actually easy if you install Xamp or Wamp.
I don't know if this helped.
Good Luck :)
Example 2: how to start mysql server in windows
Press CTRL+C to copy C:\> "C:\Program Files\MySQL\MySQL Server 8.0\bin\mysqld"
Example 3: install mysql
MySQL Community Windows Installer [https://dev.mysql.com/downloads/installer/]
Example 4: how to use mysql in windows offline
UPDATE mysql.user SET password=PASSWORD("my-new-password") WHERE User='root';
FLUSH PRIVILEGES;