Skip to content

Instantly share code, notes, and snippets.

@ppyong
Created July 18, 2020 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ppyong/067d291ff1f25db621298d293d1ff4ad to your computer and use it in GitHub Desktop.
Save ppyong/067d291ff1f25db621298d293d1ff4ad to your computer and use it in GitHub Desktop.
create table employee (
emp_no int (10),
name varchar(100),
primary key (emp_no)
);
insert employee values (1, 'user1');
insert employee values (2, 'user2');
insert employee values (3, 'user3');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment