romlytech
07/29/2021, 1:12 PM(
select
profile_id
from
participants
where
chatroom_id = (
select
chatroom_id
from
participants
where
profile_id = uid()
)
I think I'm on the right track? 😬burggraf
07/29/2021, 1:16 PMchatroom_id = (
to
chatroom_id in (
romlytech
07/29/2021, 1:17 PMburggraf
07/29/2021, 1:17 PMsubselect
here returns multiple values:
(
select
chatroom_id
from
participants
where
profile_id = uid()
)
Then you want to say where this chatroom_id value is this following list of valuesromlytech
07/29/2021, 1:26 PMburggraf
07/29/2021, 1:45 PM