Advertisement
Guest User

Untitled

a guest
May 17th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. select
  2.     "gwcsu"."id",
  3.     "gwcsu"."imei",
  4.     "gwcsu"."description",
  5.     "gwcsu"."lastContainerName",
  6.     (
  7.         select "history"."imeiId", "history"."latitude" from "history"
  8.         where
  9.             (
  10.                 "history"."imeiId" = "gwcsu"."id"
  11.                 and not("history"."latitude" is null)
  12.                 and not("history"."longitude" is null)
  13.                 and not("history"."dateTime" is null)
  14.             )
  15.         order by
  16.             "history"."dateTime" desc limit 1
  17.     )
  18. from
  19.     "gwcsu" inner join "cmd_site_userprofile_imeiid" on
  20.     (
  21.         "gwcsu"."id" = "cmd_site_userprofile_imeiid"."gwcsu_id"
  22.     )
  23. where
  24.     "cmd_site_userprofile_imeiid"."userprofile_id" = 19
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement