Guest User

Untitled

a guest
Apr 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. SELECT DISTINCT(s.id), s.name, s.max_itinerary_length, s.permalink FROM
  2. ((SELECT t.id, t.name, t.max_itinerary_length, t.permalink, count(ta.id) as tagcount
  3. FROM tours t
  4. INNER JOIN brochure_tours bt ON bt.tour_id = t.id
  5. INNER JOIN tour_variations tv ON tv.brochure_tour_id = bt.id
  6. INNER JOIN highlight_tour_places htp ON htp.brochure_tour_id = bt.id
  7. INNER JOIN highlight_groups hg ON hg.highlight_tour_place_id = htp.id
  8. INNER JOIN highlights h ON hg.highlight_id = h.id
  9. INNER JOIN taggings tas
  10. ON (tas.taggable_type = 'Highlight' AND tas.taggable_id = h.id)
  11. INNER JOIN tags ta
  12. ON tas.tag_id = ta.id
  13. WHERE tv.selling_company_id = 1
  14. AND ta.name IN ('berlin','germany','europe','tiergarten','alexanderplatz','russian war memorial','brandenburg gate','the reichstag','reichstag','berlin wall','the berlin wall','dresden','zwinger','prague','czech republic','hradcany castle','st vitus','charles bridge','wenceslas square','prague old town square','astronomical clock','berlin historical walking tour','walking tour','germnay','berlin walking tour','optional excursions','luch cruise','lunchtime crusie','traditional czech evening','prague dinner')
  15. GROUP BY t.id)
  16. UNION
  17. (SELECT t.id, t.name, t.max_itinerary_length, t.permalink, count(ta.id) as tagcount
  18. FROM tours t
  19. INNER JOIN brochure_tours bt ON bt.tour_id = t.id
  20. INNER JOIN tour_variations tv ON tv.brochure_tour_id = bt.id
  21. INNER JOIN optional_tour_places otp ON otp.brochure_tour_id = bt.id
  22. INNER JOIN optional_groups og ON og.optional_tour_place_id = otp.id
  23. INNER JOIN optionals o ON og.optional_id = o.id
  24. INNER JOIN taggings tas
  25. ON (tas.taggable_type = 'Optional' AND tas.taggable_id = o.id)
  26. INNER JOIN tags ta
  27. ON tas.tag_id = ta.id
  28. WHERE tv.selling_company_id = 1
  29. AND ta.name IN ('berlin','germany','europe','tiergarten','alexanderplatz','russian war memorial','brandenburg gate','the reichstag','reichstag','berlin wall','the berlin wall','dresden','zwinger','prague','czech republic','hradcany castle','st vitus','charles bridge','wenceslas square','prague old town square','astronomical clock','berlin historical walking tour','walking tour','germnay','berlin walking tour','optional excursions','luch cruise','lunchtime crusie','traditional czech evening','prague dinner')
  30. GROUP BY t.id)) s
  31. ORDER BY tagcount DESC
  32. LIMIT 4
Add Comment
Please, Sign In to add comment