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
When you have in query for NetteDBDataSource GROUP BY, queries looks like this:
SELECT COUNT() FROM table -- missing GROUP BY
SELECT * FROM table GROUP BY column
Right count will be like something this:
SELECT COUNT() FROM (SELECT … FROM table WHERE … GROUP BY column)
I compare NetteDBDataSource and DibiDataSource. DibiDataSource is working fine.
Testing on v2.0.7.2
The text was updated successfully, but these errors were encountered:
When you have in query for NetteDBDataSource GROUP BY, queries looks like this:
SELECT COUNT() FROM table -- missing GROUP BY
SELECT * FROM table GROUP BY column
Right count will be like something this:
SELECT COUNT() FROM (SELECT … FROM table WHERE … GROUP BY column)
I compare NetteDBDataSource and DibiDataSource. DibiDataSource is working fine.
Testing on v2.0.7.2
The text was updated successfully, but these errors were encountered: