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