Skip to content

Instantly share code, notes, and snippets.

@LucWollants
Created December 12, 2018 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LucWollants/a6ee41c1ea96865679d2da0f0ce08144 to your computer and use it in GitHub Desktop.
Save LucWollants/a6ee41c1ea96865679d2da0f0ce08144 to your computer and use it in GitHub Desktop.
->select('*')
->from('users u')
->where(
[
'is_admin'=>true
]
)
->andWhere(
[
'OR',
[
'name' => 'john',
'name' => 'doe',
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment