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

RHNUSERCHANNELFAMILYPERMS

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
CHANNEL_FAMILY_IDNUMBER(38)YNONONO 
ORG_IDNUMBER(38)YNONONO 
USER_IDNUMBER(38)YNONONO 
MAX_MEMBERSNUMBER(38)YNONONO 
CURRENT_MEMBERSNUMBER(38)YNONONO 
CREATEDDATEYNONONO 
MODIFIEDDATEYNONONO 

Query:

Legend: comment string keyword reserved word operator
select	pcf.channel_family_id,
		u.org_id org_id,
		u.id user_id,
		to_number(null) max_members,
		0 current_members,
		pcf.created,
		pcf.modified
	from	rhnPublicChannelFamily pcf,
		web_contact u
	union
	select	pcf.channel_family_id,
		u.org_id,
		u.id user_id,
		pcf.max_members,
		pcf.current_members,
		pcf.created,
		pcf.modified
	from	rhnPrivateChannelFamily pcf,
		web_contact u
	where	u.org_id = pcf.org_id