Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. itemId | fieldId | value
  2. ==========================
  3. 41 | 236 | Paris
  4. 41 | 213 | Paris
  5. 14 | 236 |
  6. 14 | 213 | Paris
  7. 25 | 236 | Paris
  8. 25 | 213 |
  9.  
  10. SELECT COUNT(*) AS sp_actions
  11. FROM
  12. `tiki_tracker_item_fields` AS actions
  13. WHERE
  14. COALESCE(
  15. actions.fieldId = 236,
  16. actions.fieldId = 213
  17. )
  18. AND actions.value = 'Paris'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement