We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After a join one can have multiple tables in the query, and might want to select all columns from all tables. The proposed syntax for this is:
@from i in table1 begin @join j in table2 on i.a equals j.a @select {i..., j...} end
In order to implement this, we need a type stable merge function (JuliaData/NamedTuples.jl#14), which is currently blocked by JuliaLang/julia#16806 on julia 0.5.
merge
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After a join one can have multiple tables in the query, and might want to select all columns from all tables. The proposed syntax for this is:
In order to implement this, we need a type stable
merge
function (JuliaData/NamedTuples.jl#14), which is currently blocked by JuliaLang/julia#16806 on julia 0.5.The text was updated successfully, but these errors were encountered: