Skip to content

Instantly share code, notes, and snippets.

@simonw

simonw/demo.sql Secret

Created August 13, 2022 22:50
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