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

RHNCHANNELFAMILYOVERVIEW

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
ORG_IDNUMBER(38)NYESYESYES 
IDNUMBER(38)NNONONO 
NAMEVARCHAR2(128)NNONONO 
URLVARCHAR2(128)NNONONO 
LABELVARCHAR2(128)NNONONO 
CURRENT_MEMBERSNUMBER(38)YNONONO 
MAX_MEMBERSNUMBER(38)YYESYESYES 
HAS_SUBSCRIPTIONNUMBER(38)YNONONO 

Query:

Legend: comment string keyword reserved word operator
select	pcf.org_id				org_id,
	f.id					id,
	f.name					name,
	f.product_url				url,
	f.label					label,
	NVL(pcf.current_members,0)		current_members,
	pcf.max_members				max_members,
	1					has_subscription
from	rhnChannelFamily			f,
	rhnPrivateChannelFamily			pcf
where	pcf.channel_family_id = f.id