Commit abc52975 authored by Waqas Riaz's avatar Waqas Riaz

Added .sql for mariadb

parent e4df0e4c
CREATE TABLE IF NOT EXISTS Employees (
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
first_name VARCHAR(60) NOT NULL,
last_name VARCHAR(60) NOT NULL
);
insert into Employees (first_name, last_name) values
('Waleed', 'Naeem'),
('Waqas', 'Riaz'),
('Muhammad', 'Arsalan'),
('Muhammad', 'Ali'),
('Hammad', 'Daoud') ;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment