Na produkčním serveru bych napsal nějakou tabulkovou funkci pro rozdělení seznamů, ale pokud potřebujete rychlý ad-hoc dotaz, tento xml trik by mohl fungovat
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