GROUP BY
を実行します 、HAVING
を使用します null状態のみを持つtask_idを返します。
select task_id
from tablename
group by task_id
having max(state) is null
GROUP BY
を実行します 、HAVING
を使用します null状態のみを持つtask_idを返します。
select task_id
from tablename
group by task_id
having max(state) is null