Với lựa chọn bên trong:
select
registration_date, community_id
from
user outer
where
user_id IN (
select
user_id
from
user inner
where
inner.community_id = outer.community_id
order by
registration_date
limit 2,1
)
order by registration_date
Chọn nhóm người dùng trong đó mỗi người dùng là người dùng thứ 3 trong cộng đồng của họ như được trả về bởi điều khoản giới hạn trong lựa chọn bên trong.