Gebruik ANSI SQL's ||
in plaats daarvan om samen te voegen:
SELECT FIRST_NAME || ',' || LAST_NAME as full_name FROM EMPLOYEES;
(CONCAT()
functie heeft slechts twee argumenten.)
Gebruik ANSI SQL's ||
in plaats daarvan om samen te voegen:
SELECT FIRST_NAME || ',' || LAST_NAME as full_name FROM EMPLOYEES;
(CONCAT()
functie heeft slechts twee argumenten.)