You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some issues arise when using MySQL 5.7 and newer or MariaDB 10.5.
There seems to be related to changes how right join work.
In MySQL 5.5 the group by groups by the latest/highest id of all events with same occasions id, but in more recent DBs the group by uses the lowest id in each occasions id group.
Some issues arise when using MySQL 5.7 and newer or MariaDB 10.5.
There seems to be related to changes how
right join
work.In MySQL 5.5 the group by groups by the latest/highest id of all events with same occasions id, but in more recent DBs the group by uses the lowest id in each occasions id group.
It's probably not
ONLY_FULL_GROUP_BY
because the queries are not rejected. https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sqlmode_only_full_group_bySome threads with possibly related issues:
Related GH issues:
Could we use https://www.db-fiddle.com/ to created small example to easy test with?
The text was updated successfully, but these errors were encountered: