Which arithmetic operations can be performed on a colum…

Which arithmetic operations can be performed on a column by using a SQL function that is built into Oracle
database? (Choose three.)

Which arithmetic operations can be performed on a column by using a SQL function that is built into Oracle
database? (Choose three.)

A.
addition

B.
subtraction

C.
raising to a power

D.
finding the quotient

E.
finding the lowest value



Leave a Reply 2

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


Tim

Tim

I’d guess C, D, E?

C) POWER(x,y) = x^y
D) FLOOR(x/y) = (integer)x/y
E) MIN(x)

josep_ora

josep_ora

A = SUM()
C = POWER(x, y)
E = MIN()