Skip to content
Advertisement

How can I build a string in SQL with various fields depending on value?

So I have several fields that may be zero or not. The fields are A,B,C,D,E. For my records returned, I want to build a string that has non-zero values. So the records returned might look like this:

Etc.

Easy to build strings like:

I just don’t want to include the zero value fields in the AS portion.

Advertisement

Answer

If you want to build string from A,B,C,D,E field, then try using CONCAT+CASE: (if it is SQL Server):

For your version try this:

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement