.. GROUP BY JOIN (File IOs).. SELECTED.
Now you have specified something as Dummyin SELECT, and the database will not know it, because While GROUPing it is not available at the TABLE level.!
Try executing the query with GROUP BY your_column, ' ', this will work. Because you mentioned it directly, instead referring to an alias!
Finally, when a is used GROUP BY. You can specify any constants in SELECT or GROUP BY .., because they will be included in your result SELECTEDwithout using the TABLE operation. Therefore, the database justifies them.
source
share