Skip to content

Instantly share code, notes, and snippets.

@quarterdome
Created August 25, 2015 19:50
Show Gist options
  • Save quarterdome/a1ad069b9b0a44c4562d to your computer and use it in GitHub Desktop.
Save quarterdome/a1ad069b9b0a44c4562d to your computer and use it in GitHub Desktop.
select 1 in (1,2);
select 3 in (1,2);
select 3 not in (1,2);
select null in (1,2,null);
select null not in (1,2,null);
select 1 in (1, 2, null);
select 1 not in (1, 2, null);
select 3 in (1, 2, null);
select 3 not in (1, 2, null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment