Skip to content
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

[Feature request] Support multiple tables in FROM clause #98

Open
ivaigult opened this issue Oct 23, 2023 · 1 comment
Open

[Feature request] Support multiple tables in FROM clause #98

ivaigult opened this issue Oct 23, 2023 · 1 comment

Comments

@ivaigult
Copy link

The documentation suggests that only one table is supported in FROM clause:

[ FROM csv | spy | text | python_expression | json [ EXPLODE path ] ]

But it would be lovely to support multiple tables, like the full fat SQL does. This would allow to execute cross table queries, e.g.:

SELECT users.name, orders.details FROM users, orders WHERE users.id = orders.user_id;
@dcmoura
Copy link
Owner

dcmoura commented Oct 25, 2023

Hey! Yes, this is true. Currently, we only support a single data source in the FROM clause. You can do very simple joins, but I understand it is not as convenient as having multiple sources.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants