How can I pass a string value within a concat statement?
for example, I want the following string: My name is 'XYZ'
The sql script for this will be:
select concat 'My name is' + 'XYZ'
In the output of the above script, the string XYZ will not be in quotes. Can someone please help me with this.