Ett sätt att göra det med SQL skulle vara:
select *
from post
where user_id not in
(select blocker_id
from blockings
where blocked_id = 1);
Byt bara ut det numeriska ID:t med variabeln.
Ett sätt att göra det med SQL skulle vara:
select *
from post
where user_id not in
(select blocker_id
from blockings
where blocked_id = 1);
Byt bara ut det numeriska ID:t med variabeln.