Skip to content

Instantly share code, notes, and snippets.

@jraregris
Created May 2, 2011 19:36
Show Gist options
  • Save jraregris/952215 to your computer and use it in GitHub Desktop.
Save jraregris/952215 to your computer and use it in GitHub Desktop.
-- Et forsøk på å hente ut
select o.object_userid as "Unit",
userid(a.cb_id) as "CB"
,userid(c.cb_id) as "CB2"
from
objrep o
left join objecttobusbar a on (a.object_id = o.object_id)
left join objecttobusbar c on (c.object_id = o.object_id)
WHERE
o.object_type = 'UNIT'
AND a.cb_id <> c.cb_id
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment