RHNUSERTYPEARRAY
DDL scriptColumns
| Name | Type | Nullable | Insertable | Updatable | Deletable | Comment |
|---|
| USER_ID | NUMBER(38) | N | YES | YES | YES | |
| TYPE_ID_T | USER_GROUP_ID_T | Y | NO | NO | NO | |
| TYPE_LABEL_T | USER_GROUP_LABEL_T | Y | NO | NO | NO | |
| TYPE_NAME_T | USER_GROUP_NAME_T | Y | NO | NO | NO | |
Query:
Legend: string keyword reserved word operator
select
U.id,
cast(multiset(select utb.type_id
from rhnUserTypeBase utb
where utb.user_id = u.id)
as user_group_id_t),
cast(multiset(select utb.type_label
from rhnUserTypeBase utb
where utb.user_id = u.id)
as user_group_label_t),
cast(multiset(select utb.type_name
from rhnUserTypeBase utb
where utb.user_id = u.id)
as user_group_name_t)
from
web_contact u