i want to put two fields in one field
code is:
Aanhef.dear_desc + Persoon.dsp_naam AS TEST
my result is this:
"dear john "
i want my result to be:
"dear john"
how can i do that?
i have tryed:
LEFT(Aanhef.dear_desc,LEN(Aanhef.dear_desc)) + Persoon.dsp_naam AS TEST
but with the same results
code is:
Aanhef.dear_desc + Persoon.dsp_naam AS TEST
my result is this:
"dear john "
i want my result to be:
"dear john"
how can i do that?
i have tryed:
LEFT(Aanhef.dear_desc,LEN(Aanhef.dear_desc)) + Persoon.dsp_naam AS TEST
but with the same results