i have create a table with identity column and a bunch of strings
create data script
drop table #data
create table #data (id int identity(1,1),strng varchar(300))
insert into #data select 'contract,johnson biopsy,y,filter'
insert into #data select 'xx,yy,ok,sample'
insert into #data select 'movie,ben stiller,dont know,yes'
;with cte as
( select
row_number() over(partition by id order by id ) as rn
, id
, value
from
#data a
cross apply
string_split(a.strng,','))
select * from cte where rn =2