実稼働サーバーでは、リストを分割するためのテーブル値関数を作成しますが、迅速なアドホッククエリが必要な場合は、このxmlトリックが機能する可能性があります
declare @listOfPageIds varchar(50), @data xml
declare @temp table(id int)
select @listofPageIds = '2, 3, 4, 5, 6, 7, 14, 15';
select @data = '<t>' + replace(@listofPageIds, ', ', '</t><t>') + '</t>'
insert into @temp
select
t.c.value('.', 'int') as id
from @data.nodes('t') as t(c)
select * from @temp