Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Jobs Sanity Check Index DDL scrips
Description Columns Query Constraints Triggers

RHNSERVERGROUPMEMBERSHIP

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
ORG_IDNUMBER(38)NNONONO 
SERVER_IDNUMBER(38)YNONONO 
GROUP_IDNUMBER(38)NNONONO 
GROUP_NAMEVARCHAR2(64)NNONONO 
GROUP_TYPEVARCHAR2(32)YNONONO 
CURRENT_MEMBERSNUMBER(38)NNONONO 

Query:

Legend: comment string keyword reserved word operator
SELECT   SG.org_id, SGM.server_id, SG.id, SG.name, SGT.label, SG.current_members
  FROM
	 rhnServerGroupMembers SGM
             right join
    	 rhnServerGroup SG on (SG.id = SGM.server_group_id)
             left join
         rhnServerGroupType SGT on (SG.group_type = SGT.id)