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
If i use "limit 100,2", I want to get results pagely, but I found this doesnt work well. "limit 100,2" 'result = "limit 2". How can I do Paging well?
"SELECT *,COUNT(1),SUM(orderTotalAmount) FROM myIndex where (id=110820) GROUP BY tId ORDER BY rId DESC LIMIT 0,5"
This is my sql. I found using "GROUP BY" causes this issue.
And I found "GROUP BY date_histogram()" even causes "limit 2" does not work.
The text was updated successfully, but these errors were encountered:
If i use "limit 100,2", I want to get results pagely, but I found this doesnt work well. "limit 100,2" 'result = "limit 2". How can I do Paging well?
"SELECT *,COUNT(1),SUM(orderTotalAmount) FROM myIndex where (id=110820) GROUP BY tId ORDER BY rId DESC LIMIT 0,5"
This is my sql. I found using "GROUP BY" causes this issue.
And I found "GROUP BY date_histogram()" even causes "limit 2" does not work.
The text was updated successfully, but these errors were encountered: