CONCAT in sql developer [duplicate]
问题 This question already has answers here : how to concatenate more than two columns in plsql developer? [duplicate] (2 answers) Closed last year . it does not runing,please show me where I have a mistake? SELECT CONCAT(FIRST_NAME,',',LAST_NAME) as full_name FROM EMPLOYEES; 回答1: Use ANSI SQL's || instead to concat: SELECT FIRST_NAME || ',' || LAST_NAME as full_name FROM EMPLOYEES; ( CONCAT() function takes two arguments only.) 回答2: Concat only expects two Parameter, so you have to use nested