Created
November 6, 2015 13:00
-
-
Save javaeeeee/bba2c9d39bb8b8e611c6 to your computer and use it in GitHub Desktop.
A script to create employee table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- A script to create employee table | |
| create table employees( | |
| -- auto-generated primary key | |
| id bigint primary key not null auto_increment, | |
| first_name varchar(255) not null, | |
| last_name varchar(255) not null, | |
| -- employee position | |
| e_position varchar(255) not null, | |
| phone varchar(255) not null, | |
| e_mail varchar(255) not null | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment