Guest User

Untitled

a guest
Feb 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. SELECT x, y, z, f , g , h
  2. FROM torrents
  3. INNER JOIN w ON w = x
  4. WHERE y = '2' OR y = '7'
  5. AND f = '1'
  6. AND h < 4294967296
  7.  
  8. SELECT x, y, z, f , g , h
  9. FROM torrents AS tabela1
  10. INNER JOIN w AS tabela2
  11. ON tabela1.w = tabela2.x
  12. WHERE ( y = '2' OR y = '7' )
  13. AND f = '1'
  14. AND h < 4294967296
  15.  
  16. SELECT x, y, z, f , g , h
  17. FROM torrents
  18. INNER JOIN w ON w = x
  19. WHERE y IN ( 2, 7 )
  20. AND f = 1
  21. AND h < 4294967296
Add Comment
Please, Sign In to add comment