Skip to content

Instantly share code, notes, and snippets.

@ppyong
Created July 18, 2020 13:35
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/3bbd364eec4b888a92d1d0f249f5c982 to your computer and use it in GitHub Desktop.
Save ppyong/3bbd364eec4b888a92d1d0f249f5c982 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