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 do you understand by recursive stored procedure?
How raid can influence database performance?
State the difference between local and global temporary tables?
Is sql server a database?
How to enter comments in transact-sql statements?
Explain how many normalization forms?
Explain a checkpoint?
What are the disadvantages of using the stored procedures?
Is port 1433 secure?
What is the synonym of join?
What are the types of indexing?
What are out-of-range errors with date and time literals?
What is database architecture? : SQL Server Architecture
What do you do in data exploration
What are the 3 types of schema?