I have the following code and I am trying to replace the Null that appear when using the pivot with zero. I do the following but it says that "Incorrect syntax near 'ISNULL'." I am not sure what I am doing wrong? Any suggestions please
select *
from #tempfinaltable
pivot ISNULL(sum(TotalXSAAL),0) for Section_desc in
([Communication],[Construction],[Energy],[Financial Institutions],
[General Property],[HIGHER ED & HEALTHCARE],
[Inland Marine],[Real Estate])) AS AALs
The same the dyanmic SQL I am using. The above query is just shows the names so you can see what I am working with
select *
from #tempfinaltable
pivot (sum(TotalXSAAL) for Section_desc in
' + '('+@BranchNames++')) AS AALs'
Can you tell me what's wrong with this statement. i am having a syntax issue:
BEGIN
Set @ISNullBranchNames = @ISNullBranchNames + 'ISNULL('+(@BranchNames+',0),'
Set @BranchNames = @BranchNames + '['+@BranchName+'],'
FETCH NEXT FROM CUR1 INTO @BranchName
END
All
PIVOT
clause must be in bracket.The result query must look like this:
SQL FIDDLE DEMO
UPDATE
How to generate parts of dynamic SQL.
If you want to replace
NULL
from PIVOT TABLE with empty string thenThis Converts the SUM value of UnitPrice to VARCHAR AND then replaces it with an empty string using ISNULL