-
-
Save simonw/ac4e19920b4b360752ac0f3ce85ba238 to your computer and use it in GitHub Desktop.
This file contains 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 demo_table (id integer primary key, name text); | |
insert into demo_table (id, name) values (1, 'Simon'); | |
insert into demo_table (id, name) values (2, 'Cleo'); | |
insert into demo_table (id, name) values (3, 'Cardi'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment