I\'m trying to find a way to combine two columns into one, but keep getting the value \'0\' in the column instead to the combination of the words.
These are what I\'
This is the only solution that would work for me, when I required a space in between the columns being merged.
select concat(concat(column1,' '), column2)