Using BO XIr3.1, WEBI (Rich Client)
Hello,
how can i apply MAX or MIN function in the Query Panel of WEBI without creating object/predefined condition in the Universe?
situation: I have a table EMP with cols - EMPID, NAME, SALARY.
I want to execute
Who is the highest paid employee in the company? using sub query
Ans:
select emp.fname
from emp
where emp.sal = (
select max(emp.sal)
from emp
); in MSSQL
I want to display the name of the emp in the report??? I know its possible to make an object in the Universe with the Select statment
max(EMP.SAL) however i want to be able to do this on WEBI only,
and then apply a sub query such that
sal Equal to maxsal
plz tell me my question is unclear…
thanks in advance
sandra
sandra911 (BOB member since 2010-02-01)