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
Is your feature request related to a problem? Please describe.
When go-jet generates a subquery that returning a function like max(updateTime), the inner join condition assumes it's named as table.column.
After sometime, I found a simple solution where the alias has the table in the name.
i.e. SELECT(
MAX(table.MyTable.UpdateTime).AS("my_table".update_time"),
Describe the solution you'd like
Each 1st time user could save time if go-jet would take functions into account when generating the link conditions. This way we won't have to use an alias, and better yet prepend an unintuitive table name
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When go-jet generates a subquery that returning a function like max(updateTime), the inner join condition assumes it's named as table.column.
After sometime, I found a simple solution where the alias has the table in the name.
i.e. SELECT(
MAX(table.MyTable.UpdateTime).AS("my_table".update_time"),
Describe the solution you'd like
Each 1st time user could save time if go-jet would take functions into account when generating the link conditions. This way we won't have to use an alias, and better yet prepend an unintuitive table name
The text was updated successfully, but these errors were encountered: