Guest User

Untitled

a guest
Dec 10th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. This:
  2. r.headline LIKE ? OR r.body LIKE ? AND r.release_date < ?
  3.  
  4. is very different from this:
  5. (r.headline LIKE ? OR r.body LIKE ?) AND r.release_date < ?
  6.  
  7. Parenthesis around the first two terms is important.
Add Comment
Please, Sign In to add comment