I tried do a search but couldn’t find an answer specific to Deski.
Is it possible to select multiple objects in a subquery? Whenever I select a second object, the Run button becomes disabled. I read that it’s possible in Webi so I’m hoping we could do the same in Deski. Thanks.
Thanks for your reply. This is what I’m trying to do:
SELECT DIM1, MEASURE1, MEASURE2
FROM TABLE1, TABLE2
WHERE
DIM1 = (SELECT DIM1X, DIM2 FROM TABLE1, TABLE2
WHERE …)
Basically I want to be able to display DIM2 together with DIM1, MEASURE1, and MEASURE2 on the report. There are multiple DIM2 for each DIM1 but I want to display only those DIM2 that were picked up in the subquery. Hope this makes sense.