
Ultimate access to all questions.
A data engineer is tasked with creating a function named print_details that outputs the name of the current catalog and database, separated by a space. Which of the following statements correctly creates this function?_
A
CREATE FUNCTION print_details() RETURNS STRING RETURN concat(current_catalog(),‘ ‘,current_database());_
B
CREATE FUNCTION print_details(STRING) RETURNS concat(current_catalog(),‘ ‘,current_database());_
C
CREATE FUNCTION print_details RETURNS STRING RETURN concat(current_catalog(),‘ ‘,current_database());_
D
CREATE FUNCTION print_details(STRING) RETURN concat(current_catalog(),‘ ‘,current_database());_
E
CREATE FUNCTION print_details() RETURNS concat(current_catalog(),‘ ‘,current_database());_