Advertisement
Guest User

Untitled

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