Skip to content

Instantly share code, notes, and snippets.

@tell-k
Created September 14, 2012 05:36
Show Gist options
  • Save tell-k/3720000 to your computer and use it in GitHub Desktop.
Save tell-k/3720000 to your computer and use it in GitHub Desktop.
# 某フレームワークで OR を表現
Entry.objects.get(Q(id=1) | Q(id=2))
# => SELECT * FROM etnries WHERE id = 1 OR id = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment