Created
May 2, 2011 19:36
-
-
Save jraregris/952215 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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