SQL Server dilemma, performance
- by Woland
Hello
I am creating app where user can save options
witch one is better?
to save into user table varchar feeld smthing like ('1,23,4354,34,3')
query for this is select * from data where CHARINDEX ( 'L', Providers , 0 ) 0
create other table where user options are and just add rows
select * from data where Providers in (select Providers from userdata where userid=100)
thanks for help