Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. | id | name |
  2. |----|--------|
  3. | 1 | co.uk |
  4. | 2 | uk |
  5. | 3 | foo.uk |
  6.  
  7. SELECT *
  8. FROM suffixes
  9. WHERE
  10. name = "example.co.uk" OR
  11. name = "co.uk" OR
  12. name = "uk"
  13. LIMIT 1
  14.  
  15. | 1 | co.uk |
  16.  
  17. SELECT *
  18. FROM suffixes
  19. WHERE
  20. name = "uk" OR
  21. name = "co.uk"
  22. LIMIT 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement