-
Notifications
You must be signed in to change notification settings - Fork 74
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
How to make join on diffent column names? #25
Comments
For now this types of joins is not supported. I intend to make this possible some time later. Just as a quick and dirty solution you may create a subquery for join where you can alias needed column for join with needed name. |
@evsign Will you accept pull request if I implement this feature? |
Of course! If this will be test covered and well documented, i will be very glad to accept such!) |
Also expected that with this will come complete rework of joins "interface" accordingly to pretty big changes in clickhouse since time of this lib appearance). |
Ok, thank you, I'll have a look. |
@evsign , I made pull request, please check. |
@evsign Is there any follow-up arrangement for this feature? I want to use it |
Has it been pulled into master? How can I use this feature? |
How to make join on different column names?
select * from t1 all left join t2 on t1.v =t2.viewId;
The text was updated successfully, but these errors were encountered: