How to apply Aggregation (grouping) based on condition as like Group by on condition in Mysql?
Example: SELECT * FROM `TABLE` GROUP BY ( CASE WHEN `NAME` = 'AA' THEN `COLUMN1` ELSE `COLUMN2` END );
Discussion posts and replies are publicly visible
That's not supported directly. Depending on what you are looking for, synced records and custom record fields might be a solution.