First of all we need a database schema (database workspace). Execute the following two lines on your MySQL installation.
CREATE DATABASE hr_database; SHOW DATABASES; USE hr_database;
To exercise the DML commands, we need a suitable table including a reasonable amout of data. The following SQL statement will create a table employee regarding all necessary attributes of an „average employee“.
CREATE TABLE EMPLOYEES ( employee_ID INT PRIMARY KEY, -- Employee ID as the primary key name VARCHAR(50) NOT NULL, -- Name of the employee (max length 50 characters) surname VARCHAR(50) NOT NULL, -- Surname of the employee (max length 50 characters) birthdate DATE NOT NULL, -- Birthdate of the employee sex CHAR(1), -- Sex of the employee (M/F/O for other) pronomen VARCHAR(10), -- Pronoun of the employee employment_date DATE NOT NULL, -- Date when the employee was hired salary DECIMAL(10, 2) NOT NULL, -- Salary of the employee (up to 10 digits, 2 decimal places) department VARCHAR(50) NOT NULL -- Department where the employee works );
Explanation