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
Example: Y = select asample, bsample, 2*sum(minv) as mnv from X
The query above does an implicit Group By asample, bsample.
For queries expressed in MyriaL it might make sense to do so, but for queries expressed in SQL.
Moreover, the query: Y = select asample, bsample, 2*sum(minv) as mnv from group by asample, bsample
throws an exception.
The text was updated successfully, but these errors were encountered:
Example:
Y = select asample, bsample, 2*sum(minv) as mnv from X
The query above does an implicit
Group By asample, bsample
.For queries expressed in MyriaL it might make sense to do so, but for queries expressed in SQL.
Moreover, the query:
Y = select asample, bsample, 2*sum(minv) as mnv from group by asample, bsample
throws an exception.
The text was updated successfully, but these errors were encountered: