SQLでそれを行う方法は次のとおりです。
select *
from post
where user_id not in
(select blocker_id
from blockings
where blocked_id = 1);
数値IDを変数に置き換えるだけです。
SQLでそれを行う方法は次のとおりです。
select *
from post
where user_id not in
(select blocker_id
from blockings
where blocked_id = 1);
数値IDを変数に置き換えるだけです。