|
How do you concatenate the FIRSTNAME and LASTNAME from EMP table to give a complete name?
COBOL SQL 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
|