Which three statements are true regarding single-row functions?

Which three statements are true regarding single-row functions? (Choose three.)

Which three statements are true regarding single-row functions? (Choose three.)

A.
They can accept only one argument.

B.
They can be nested up to only two levels.

C.
They can return multiple values of more than one data type.

D.
They can be used in SELECT, WHERE, and ORDER BY clauses.

E.
They can modify the data type of the argument that is referenced.

F.
They can accept a column name, expression, variable name, or a user-supplied constant as arguments.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


user

user

Aggregate function can be nested up to only two levels.

select sum(sal) from emp order by sum(sal);
select sum(sal), job from emp group by job order by sum(sal);

networkmanagers

networkmanagers

Correct answer is DEF