You will need to use a DBMS to try out the SQL commands and queries when we start learning the SQL query language and when you work on the SQL homework assignment. While SQL is a standard, every vendor implements it with some quirks. For this course, we standardize on the MySQL community edition database. If you’re running linux MySQL has been replaced by a compatible DBMS called MariaDB.
It is best to install the software NOW during the first week of the semester when you have less homework and more free time.
Go to the MySQL community downloads
Download and install the appropriate version and follow the installation instructions.
mysql
packagesudo dnf install mariadb mariadb-server
sudo apt-get install mariadb mariadb-server
Go to the MySQL community downloads
Download and install the appropriate version and follow the installation instructions.
You’ll need to start the database server before logging in so issue the following commands on a terminal:
systemctl start mariadb-server
mysql
You should then be prompted with a database shell
MariaDB [(none)]>