Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created November 6, 2015 13:00
Show Gist options
  • Select an option

  • Save javaeeeee/bba2c9d39bb8b8e611c6 to your computer and use it in GitHub Desktop.

Select an option

Save javaeeeee/bba2c9d39bb8b8e611c6 to your computer and use it in GitHub Desktop.
A script to create employee table
-- 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