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

RHNCHANNELFAMILYSERVERS

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
CUSTOMER_IDNUMBER(38)NNONONO 
CHANNEL_FAMILY_IDNUMBER(38)NNONONO 
SERVER_IDNUMBER(38)NYESYESYES 
CREATEDDATENYESYESYES 
MODIFIEDDATENYESYESYES 

Query:

Legend: comment string keyword reserved word operator
select	rs.org_id			customer_id,
		rcfm.channel_family_id		channel_family_id,
		rsc.server_id			server_id,
		rsc.created			created,
		rsc.modified			modified
	from	rhnChannelFamilyMembers		rcfm,
		rhnChannelFamily		rcf,
		rhnServerChannel		rsc,
		rhnServer			rs
	where
		rcfm.channel_id = rsc.channel_id
		and rcfm.channel_family_id = rcf.id
		and rsc.server_id = rs.id