Do anyone know if I can use Over() in oql query from a report. Mendix does not like over() and / ()devide
SELECT dep,
COUNT (*) as theCount,
sum(count(*)) over() as total_cnt,
round(100*(count(*) / sum(count(*)) over ()),2) as ...