hi,
I have a problem with my report format.
I use stored procedure to generate a report from some templates, which contain many input variables (ex. A, B, C).
The report should look like:
A, B, and C.
Currently, my condition is:
CASE WHEN @A != '' THEN @A + ',' + SPACE(1) ELSE '' END+
CASE...