SQL Developer中的CONCAT

时间:2018-10-01 09:23:25

标签: sql oracle concatenation concat

它没有运行,请告诉我哪里有错误?

cordova-xcode10 run ios --target "iPhone-8"

enter image description here

4 个答案:

答案 0 :(得分:4)

使用ANSI SQL的$(document).ready(function(){ $('.valider').click(function(e){ alert($('.the_id').val()); }); }); 进行连接:

||

({SELECT FIRST_NAME || ',' || LAST_NAME as full_name FROM EMPLOYEES; 函数仅接受两个参数。)

答案 1 :(得分:3)

Concat只需要两个参数,因此您必须使用嵌套的concat:

SELECT CONCAT(CONCAT(FIRST_NAME,','), LAST_NAME) as full_name FROM EMPLOYEES;

有关更多信息,请参见Oracle documentation

答案 2 :(得分:3)

concat 有2个参数。尝试使用两次,例如:

SELECT CONCAT(CONCAT(FIRST_NAME,','), LAST_NAME) as full_name FROM EMPLOYEES;

答案 3 :(得分:2)

concat(String,String)仅使用2个参数。 如果您想使用','

SELECT FIRST_NAME||','||LAST_NAME as full_name FROM EMPLOYEES