-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
Description
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:
WITH funnel_actors AS (SELECT toUUID('018a1a68-e622-0000-8811-0fcb68c943d8') AS actor_id)
SELECT * FROM events event
JOIN funnel_actors AS actors
ON event.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.