Guest User

Untitled

a guest
Nov 12th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. SELECT *
  2. FROM `restaurant_session_log`
  3. WHERE `restId` = '176'
  4. OR branchId = '203'
  5. OR `multi_vendorId` LIKE '%,176%'
  6. OR `multi_vendorId` LIKE '%,176,%'
  7. OR `multi_vendorId` LIKE '%176,%'
  8. OR `multi_vendorId` LIKE '%[176]%'
  9. AND (`excluded_branch_id` NOT LIKE '%,203%' OR `excluded_branch_id` NOT LIKE '%,203,%' OR `excluded_branch_id` NOT LIKE '%203,%' OR `excluded_branch_id` NOT LIKE '%[203]%' )
  10.  
  11. WHERE (`restId` = '176' OR branchId = '203'
  12. find_in_set(176, `multi_vendorId`)
  13. ) AND
  14. (find_in_set(203, `excluded_branch_id`)
Add Comment
Please, Sign In to add comment