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
Please tell me how I can create the following expression
select *
from `users`
where `channel_id` = 81
and (not exists (select *
from `user_variables`
where `users`.`id` = `user_variables`.`user_id`
and `id` in ('489')
and `value` = 123
))
For one field, I can use the construction
!relation.column