这可能是一个简单的问题。当我显示它时,我想在我的连接列中添加特殊字符。这是我的查询: -
select emp"EMP",concat(INITCAP(lastname),
INITCAP (firstname))”Full name”,
INITCAP (goals)”Goals” from employeesTHREE ORDER BY lastname;
需要的结果: -
EMP Fullname Goals
___________________________________________
1 thomas,mathew ~~~~~~~~~~~~~~~~ To be the best
答案 0 :(得分:1)
你应该可以做这样的事情......
concat(concat(INITCAP(lastname), INITCAP (firstname)), '~~~~~')