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
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
I’d guess C, D, E?
C) POWER(x,y) = x^y
D) FLOOR(x/y) = (integer)x/y
E) MIN(x)
A = SUM()
C = POWER(x, y)
E = MIN()