Hello,
I need the below SQL statment to return a string "'a','b','c'" exactly as shown as a field. Oracle see's the commas as separate fields.
Is there some Oracle function that will return whatever is passed in as a literal string instead of trying to parse special characters like ' and , ?
Select
('a','b','c') as MyField
From Dual
I appreciate any help!
I need the below SQL statment to return a string "'a','b','c'" exactly as shown as a field. Oracle see's the commas as separate fields.
Is there some Oracle function that will return whatever is passed in as a literal string instead of trying to parse special characters like ' and , ?
Select
('a','b','c') as MyField
From Dual
I appreciate any help!