Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. select "media".*
  2. from "media"
  3. inner join "media_cities"
  4. on "media"."id" = "media_cities"."media_id"
  5. inner join "accounts" on "media"."account_id" = "accounts"."id"
  6. where "latitude" is not null
  7. and "longitude" is not null
  8. and "latitude" > 59.8044
  9. and "latitude" < 59.9844
  10. and "longitude" > 30.0852
  11. and "longitude" < 30.4432
  12. and "accounts"."network_id" = 1
  13. and "media_cities"."likes_threshold" > 150
  14. and "media"."created_at" > '2014-10-27'
  15. order by "media"."created_at" desc
  16. limit 20 offset 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement