Created
July 18, 2020 13:35
-
-
Save ppyong/3bbd364eec4b888a92d1d0f249f5c982 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