Hi,
I see one of the panel we have where condition in the select as mentioned below:
where
$__timeFilter(ts)
and ('*' = $Advertiser or adv_id = CAST($AV as INT64))
and ('*' = $OSN or osid = lower($OSN) )
and ('*' = $Country or country = lower($Country) )
Can anyone please tell me the meaning of ('*' = , which column or data it is going to refer to.
Is that the column refers to the variable?
select column1,adv_id
where
$__timeFilter(ts)
and ('*' = $Advertiser or adv_id = CAST($AV as INT64))
from table1;
variable has query like this:
Advertiser=select advi_id from Advertiser
what is possible with this? * = referring to which column1 or adv_id or don’t think of both * = how come this can refer to variable output’s if it has more then one value’s.
I can use * = something in any general query, but didn’t make out if that is correct output.