Update mysql_setup.md

This commit is contained in:
Jcodeerd 2023-09-15 21:39:01 +02:00 committed by GitHub
parent 5f38cb1224
commit fe22343c6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,11 @@ The first step in this process is to login to the MySQL command line where we wi
things setup. To do so, simply run the command below and provide the Root MySQL account's password that you setup when
installing MySQL. If you do not remember doing this, chances are you can just hit enter as no password is set.
``` bash
```sql
# If using MySQL
mysql -u root -p
# If using MariaDB (V11.0.0+)
mariadb -u root -p
```