Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. SELECT *
  2. FROM table
  3. WHERE
  4. (value != 26)
  5. AND date IS NULL
  6. AND last_modified >= '5/21/2014'
  7.  
  8. SELECT *
  9. FROM table
  10. WHERE
  11. (value != 26 OR value is null)
  12. AND date IS NULL
  13. AND last_modified >= '5/21/2014'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement