1

This might be a simple problem. i would like to add special characters to my concatenated column when i display it. This the query that I have:-

select emp"EMP",concat(INITCAP(lastname), 
       INITCAP (firstname))”Full name”,
       INITCAP (goals)”Goals” from employeesTHREE ORDER BY lastname;

result needed:-

EMP     Fullname                       Goals
___________________________________________

1       thomas,mathew ~~~~~~~~~~~~~~~~ To be the best
4

1 回答 1

1

你应该能够做这样的事情......

concat(concat(INITCAP(lastname), INITCAP (firstname)), '~~~~~')
于 2012-11-17T04:12:57.060 回答