Nested Queries #1527
Unanswered
nabeelrehman2114
asked this question in
Help
Nested Queries
#1527
Replies: 3 comments 3 replies
-
Hi @nineralpha, |
Beta Was this translation helpful? Give feedback.
0 replies
-
how do we do this in a dashboard query? could I have two queries at the same time? |
Beta Was this translation helpful? Give feedback.
1 reply
-
sure , here is an example, output as a pie chart. thanks. select
count(*) as Count
from stream
where Environment = 'Production'
and @EventType = 0x205600AC
and @Properties['ivp_owspricing_priceupdate'] is not null
and @Properties['ivp_owspricing_priceupdate'].pnl_date = (
select max(@Properties['ivp_owspricing_priceupdate'].pnl_date)
from stream
where Environment = 'Production'
and @EventType = 0x205600AC
and @Properties['ivp_owspricing_priceupdate'] is not null
)
group by
@Properties['ivp_owspricing_priceupdate'].dealer.dealer_name
``` |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any way to use nested query something like this
select ActivityId from stream where appName = 'appName' and Id = (select Id from stream where name = 'Name')
?Beta Was this translation helpful? Give feedback.
All reactions