Hi
would like to write below query in rich client where i have written in SQL.
select location,
SUM(casewhen priority='1'and sholders like'%XXX%'then 1 else 0 end)as'Total P1callsof XXX',
SUM(casewhen Priority='1'and sholders like'%XXX%'and sla_violation=0 then 1 else 0 end)as'TotalResolvedcallsinBHRS XXX',
from Stakeholders groupby Location
I have tried with SUM,IF ELSE conditions but end with errors. Help is much appreciated.