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
Table
isin
ClickHouse supports using a table identifier directly with IN.
IN
For example, this is a valid ClickHouse query:
WITH y AS ( SELECT n FROM values('n int', 1, 2) ) SELECT * FROM values('n int', 1, 2, 3, 4) AS x WHERE x.n IN y
It would be nice if pypika's isin would accept a Table as well, but currently it only accepts list | tuple | set | Term.
list | tuple | set | Term
I realize this syntax is ClickHouse specific and not standard SQL. I'm not sure whether that's a requirement for this library's API.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ClickHouse supports using a table identifier directly with
IN
.For example, this is a valid ClickHouse query:
It would be nice if pypika's
isin
would accept aTable
as well, but currently it only acceptslist | tuple | set | Term
.I realize this syntax is ClickHouse specific and not standard SQL. I'm not sure whether that's a requirement for this library's API.
The text was updated successfully, but these errors were encountered: