Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@simonw
Created August 17, 2022 22:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save simonw/1f8a91123ccefd8844187225b1832d7a to your computer and use it in GitHub Desktop.
Save simonw/1f8a91123ccefd8844187225b1832d7a to your computer and use it in GitHub Desktop.
create table recipes (id integer primary key, name text, ingredients text);
insert into recipes values (1, 'Cake', '["flour", "sugar", "eggs"]');
insert into recipes values (2, 'Pancakes', '["flour", "eggs", "butter"]');
insert into recipes values (3, 'Waffles', '["flour", "milk", "eggs"]');
insert into recipes values (4, 'Pizza', '["flour", "sugar", "eggs", "cheese"]');
@simonw
Copy link
Author

simonw commented Aug 17, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment