Hi
I am using below query in query record processor for flow files which are json based , But the casecount column is not displaying in resultant flowfiles
SELECT caseid, projectshortname,COUNT(caseid) as casecount
FROM FLOWFILE
GROUP BY caseid,projectshortname
ORDER BY caseid DESC
LIMIT 1
Please advice me on this issue