You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We do not support aliasing a join JOIN ... AS ....
Try this example in the HogQL query editor:
WITH funnel_actors AS (SELECT toUUID('018a1a68-e622-0000-8811-0fcb68c943d8') AS actor_id)
SELECT*FROM events event
JOIN funnel_actors AS actors
ONevent.person_id=actors.actor_id
Describe the solution you'd like
Support for JOIN ... AS ....
Describe alternatives you've considered
Not aliasing the joined table.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
We do not support aliasing a join
JOIN ... AS ...
.Try this example in the HogQL query editor:
Describe the solution you'd like
Support for
JOIN ... AS ...
.Describe alternatives you've considered
Not aliasing the joined table.
The text was updated successfully, but these errors were encountered: