Replies: 2 comments
-
Here is an example
would be converted into
|
Beta Was this translation helpful? Give feedback.
0 replies
-
no, but you can always make a custom transform for your use case |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Lets say we have this sql
The expression
b inner join c ON c.id = b.id
is an implicit derived table (subquery representation of Table with Join) but it can be made explicit via an CTE.eliminate_subqueries
does not do it and I can understand why.Question is whether that would be a relevant feature to add? If yes, I could try to volunteer here with some high level design guidance (after looking at the scope code... :) ).
The reason I am asking is that I have lots of cases with recursive
from_item
and that's a different AST design pattern from the current sqlglot flat FROM/JOIN one.Beta Was this translation helpful? Give feedback.
All reactions