-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
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
add outer join #2756
Comments
connect #84 |
@nathanielc @timhallinflux This seems to be a popular ask; is it going to be on the roadmap in the next 12 months or so? |
Such a join would solve some of my issues as well. Up-vote, thumps up, ++ or what I need to say to get this feature. 👍 |
This issue has had no recent activity and will be closed soon. |
@jacobmarble Does 3.x do this using 'normal' SQL? |
This issue has had no recent activity and will be closed soon. |
I need to join against a constant, possibly incomplete data set. If incomplete, then query results should indicate that. In this example, if
x
returns anyenv
value that is unknown toy
, then the row inx
is omitted from the join output.method: "outer"
would fix this by returning all data inx
, withnull
or similar for the missing value iny
.The text was updated successfully, but these errors were encountered: