Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. Select * from tablename
  2. where display = 1 or display = 2 and content like "%hello world%" or tags like "%hello world%" or title = "%hello world%"
  3.  
  4. (display = 1 or display = 2) and (content like "%hello world%" or tags like "%hello world%" or title = "%hello world%")
  5.  
  6. ((display = 1 or display = 2) and (content like "%hello world%")) or (tags like "%hello world%" or title = "%hello world%")
  7.  
  8. INTERVAL
  9. BINARY, COLLATE
  10. !
  11. - (unary minus), ~ (unary bit inversion)
  12. ^
  13. *, /, DIV, %, MOD
  14. -, +
  15. <<, >>
  16. &
  17. |
  18. = (comparison), <=>, >=, >, <=, <, <>, !=, IS, LIKE, REGEXP, IN
  19. BETWEEN, CASE, WHEN, THEN, ELSE
  20. NOT
  21. &&, AND
  22. XOR
  23. ||, OR
  24. = (assignment), :=
  25.  
  26. Select
  27. *
  28. from tablename
  29. where
  30. display = 1
  31. or display = 2
  32. and content like "%hello world%"
  33. or tags like "%hello world%"
  34. or title = "%hello world%"
  35.  
  36. Select
  37. *
  38. from tablename
  39. where
  40. (display = 1)
  41. or (
  42. (display = 2)
  43. and (content like "%hello world%")
  44. )
  45. or (tags like "%hello world%")
  46. or (title = "%hello world%")
  47.  
  48. Select
  49. *
  50. from tablename
  51. where
  52. (
  53. (display = 1)
  54. or (display = 2)
  55. ) and (
  56. (content like "%hello world%")
  57. or (tags like "%hello world%")
  58. or (title like "%hello world%")
  59. )
  60.  
  61. select * from tablename
  62. where (display = 1 or display = 2)
  63. and (content like "%hello world%"
  64. or tags like "%hello world%"
  65. or title = "%hello world%")
  66.  
  67. SELECT * FROM tableName
  68. WHERE display IN (1,2)
  69. AND (content LIKE "%hello world%"
  70. OR tags LIKE "%hello world%"
  71. OR title LIKE "%hello world%")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement