Hi all. what is the easiest way to combine 2 columns and a string in between. I see that Concat is supported, but not Concat_ws. In the example i want to add a customer name like the following "first name" + ", " + "last name". using "&" or "+" fails. thanks
s
Stephanie Hughes
03/14/2023, 7:25 PM
I've resorted to a nested concat. In my usage: CONCAT(CONCAT(itemsku, ' - '), locationname)
j
JR
03/14/2023, 7:31 PM
@Stephanie Hughes that works! I tried something similar that failed, but i'll take it! thanks!!!