Provisioning a MySQL Database
In this lab you will learn how to provision a database that contains a table used to store authorized user data. You will use the Structured Query language (SQL) to create a database, create a table, query from a table, and insert data into a table.
outcomes
In this lab, you will learn to:
- Install the MySQL database server in Linux.
- Create a database in MySQL.
- Create a table in MySQL.
- Query a table in MySQL.
- Insert data into a table in MySQL.
Videos:
Before you start this lab, review these videos.
Overview
The development of this document is funded by the Boston Area Advanced Technological Education Connections (BATEC) Grant No. NSF-0703097 thru Bunker Hill Community College.
A database (DB) is a container used to store data. MySQL describes the query language type and possible syntax (version dependent) used to interact with a MySQL DB. In this lab, we will provision a MySQL DB that will be used to store authorized user data.

Provisioning a MySQL Database