Hi,
i want to know how correlated subqueries can be achieved in web intelligence/universe.
If the correlated subquery is in the where clause of the sql, then it can be achieved by creating a predefined query filter in the universe.
The below is a simple example. In my universe i dont have a join between customers and fact_accounts.
SELECT
account_number,
account_balance,
(select account_name from customers where account_NO=fa.account_number)
FROM fact_accounts fa
WHERE balance_date between '01-jan-2014' and '30-apr-2014'
how to achieve the above subquery in webi or universe
Regards