Skip to content
Advertisement

How to solve “SELECT list is not in GROUP BY clause and contains nonaggregated column” without adding the column into “group by”?

table:

id action project_id created_on last_updated_on
1 Update 123 2021.1.1 2021.5.3
2 creation 123 2021.1.4 2021.5.2
3 Update 123 2021.1.3 2021.5.1
4 Update 456 2021.2.1 2021.6.3
5 Update 456 2021.2.2 2021.6.2
6 creation 456 2021.2.3 2021.6.1

I would like to get a map of project and its most recently created Update action’s last_updated_on.

My statement is

But I got the error of SELECT list is not in GROUP BY clause and contains nonaggregated column.

I cannot change the ONLY_FULL_GROUP_BY atrribute.

And in my use case I think I cannot add last_updated_on into the group by either.

I also tried

but the error still occurred.

Hope someone can help me. Tnanks in advance!

Update:

Desired result of the example table:

project_id last_updated_on
123 2021.5.1
456 2021.6.2

Explanation:

  1. For project_id = 123, row 1 and 3’s action are update,
  2. after order by created_on desc limit 1, row 3 is selected, whose last_updated_on is 2021.5.1.

Advertisement

Answer

You can do:

Will show the last Update action for each project. Projects with no Update action at all won’t show up.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement