how we can store the value like that 001,003,023 etc in sql
server 2005
Answer Posted / achuthan
set @s= ''
select @s=@s+column +','
if Len(@s)>0
select @s = substring(@s,1,len(@s)-1)
Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What is mapping schema?
How many types of stored procedures are there in sql server?
What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting are possible?
Define compound operators?
What is Transparent Data Encryption?
How connect excel to sql server?
What is hot add cpu in sql server 2008?
What is the cartesian product of table?
Why would you call update statistics?
How to list all triggers in the database with sys.triggers in ms sql server?
Which sql server table is used to hold the stored procedure scripts?
How do indexes help, types?
Explain an incremental backup?
Find columns used in stored procedure?
State the difference between local and global temporary tables?