Interview Questions

How do you concatenate the FIRSTNAME and LASTNAME from EMP table to give a complete name?

DB2 INTERVIEW QUESTIONS


(Continued from previous question...)

How do you concatenate the FIRSTNAME and LASTNAME from EMP table to give a complete name?

SELECT FIRSTNAME || ‘ ‘ || LASTNAME FROM EMP;

(Continued on next question...)

Other Interview Questions