Skip to content

Instantly share code, notes, and snippets.

@simonw

simonw/demo.sql Secret

Created August 13, 2022 22:50
Show Gist options
  • Save simonw/ac4e19920b4b360752ac0f3ce85ba238 to your computer and use it in GitHub Desktop.
Save simonw/ac4e19920b4b360752ac0f3ce85ba238 to your computer and use it in GitHub Desktop.
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