Skip to content

Instantly share code, notes, and snippets.

@jjb
Created February 28, 2014 22:29
Show Gist options
  • Save jjb/9281339 to your computer and use it in GitHub Desktop.
Save jjb/9281339 to your computer and use it in GitHub Desktop.
app_development=# select * from things;
id | tags
----+---------------
1 | {blue,yellow}
1 | {blue,red}
1 | {yellow,red}
1 | {blue}
(4 rows)
app_development=# select * from things where tags <@ '{"blue"}';
id | tags
----+--------
1 | {blue}
(1 row)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment