Create table test(Names varchar(100) primary key )
insert into test values('Hugeman')
insert into test values('Jack')
insert into test values('William')
insert into test values('Kevin')
insert into test values('Peter')
Query 1:
declare @sql varchar(100)
select @sql = coalesce(@sql+'+','')+Names from test order by names-- where object_id =object_id('temp')
print @sql
This will result as Hugeman+Jack+Kevin+Peter+William
Query 2
declare @sql varchar(100)
select @sql = coalesce(Names+'+','') from test order by names-- where object_id =object_id('temp')
print @sql
This will results William+
As per the documentation of coalesce, will return the first not null value. So it has to result Hugeman+. But it returns the entire rows.
Why query2 haven't done the same ?
This is not stricly connected to
COALESCE
.Try these SELECTs:
So what happened? For EACH record selected:
@sql
@sql
as the last name extractedI don't understand exactly what you want to obtain from your SELECT, but a better example of
COALESCE
could be: