Hiển thị dữ liệu theo đề xuất của @Juan
select
row_number() over (
partition by modulecode order by modulecode
) as sessionid,
modulecode
from schedule
Sau đó, khi người dùng yêu cầu một sessionid nhất định từ một mô-đun nhất định, hãy thực hiện:
select *
from schedule
where sessionid = (
select sessionid
from (
select
sessionid,
row_number() over (order by sessionid) as module_sessionid
from schedule
where modulecode = 'B'
) s
where module_sessionid = 2
)