Thực hiện GROUP BY
, sử dụng HAVING
để trả về task_id chỉ có trạng thái rỗng.
select task_id
from tablename
group by task_id
having max(state) is null
Thực hiện GROUP BY
, sử dụng HAVING
để trả về task_id chỉ có trạng thái rỗng.
select task_id
from tablename
group by task_id
having max(state) is null