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				as org_id,
	f.id					as id,
	f.name					as name,
	f.product_url				as url,
	f.label					as label,
	coalesce(pcf.current_members,0)		as current_members,
	pcf.max_members				as max_members,
	1					as has_subscription
from	rhnChannelFamily			f,
	rhnPrivateChannelFamily			pcf
where	pcf.channel_family_id = f.id