nerdexam
Oracle

1Z0-909 · Question #52

1Z0-909 Question #52: Real Exam Question with Answer & Explanation

Sign in or unlock 1Z0-909 to reveal the answer and full explanation for question #52. The question stem and answer options stay visible for context.

SQL Fundamentals

Question

You must write a statement that combines the first_name and last_name columns from the employees table as "last_name, first_name." Which two statements will do this?

Options

  • ASELECT last_name + ', ' + first_name FROM employees;
  • BSELECT CONCAT_WS(', ',last_name,first_name) FROM employees;
  • CSELECT GROUP_CONCAT(last_name, first_name) FROM employees;
  • DSELECT last_name, ` , ',first_name FROM employees;
  • ESELECT CONCAT(last name,', ',first_name) FROM employees;

Unlock 1Z0-909 to see the answer

You've previewed enough free 1Z0-909 questions. Unlock 1Z0-909 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.

Topics

#string concatenation#CONCAT function#CONCAT_WS function#SQL functions
Full 1Z0-909 Practice