sorry to post a new thread but something happened to the other one and i can't reply to it.

On DaPi's advice i used a query like this...

select id,
cast ( multiset( select user_id
from caw_tabsaccess
where caw_tabsaccess.tab_id = caw_tabs.id and caw_tabsaccess.user_id IS NOT null
group by user_id ) as ONEDNUMBERARRAY ) USER_ID
from caw_tabs;

to get multiple rows into one.

the problem is it returns results like this

ID USER_ID
-- -------
1
45
56


so my problem is how do i get the actual results from the in USER_ID column? ONEDNUMBERARRAY is table of numbers.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •