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
Currently starting table is mandatory for JOIN closure.
$DSL.select {
TARGET (Film.alias("f"))
JOIN (TARGET()) { // specifying TARGET() is mandatory although by default it can assumeINNER_JOIN (Film_Actor.alias("fa")) ON (f.film_id, fa.film_id)
}
}
But it is nice to have make starting table optional, and in case user has not specified it, NyQL assumes it always joining with specified TARGET() table. New equivalent query of above.
Currently starting table is mandatory for JOIN closure.
But it is nice to have make starting table optional, and in case user has not specified it, NyQL assumes it always joining with specified TARGET() table. New equivalent query of above.
The text was updated successfully, but these errors were encountered: