Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Please HELP. Simple PL/SQL
A quick question. With this construct:
SQL> create or replace type a as object( x integer ) 2 /
Type created.
SQL> create or replace type v_a as varray(20) of REF a 2 /
Type created.
SQL> create or replace type b as object ( m v_a, name varchar) 2 /
Type created.
SQL> create table b_table of b
2 /
Table created.
SQL> How do I list the values of x for a given object b. Say I get 'name' as a parameter.
Thanks.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Received on Fri Jul 23 1999 - 19:44:28 CDT
![]() |
![]() |