Im doing a memory analysis of an existing java software. Is there a sql \'group by\' equivalent in oql to see the count of objects with same values but different instances.<
You can select all the strings and then use the terminal to aggregate them.
sort | uniq -c to get the counts.