一、原题
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
答案:ACE
二、题目翻译
哪一种算术运算能被Oracle数据库内置SQL函数在一个列上执行?(即哪一种算术运算可以被内置函数替代执行)(选择三个)
A. 加法
B. 减法
C. 乘方
D. 找商
E. 找最小值
三、题目解析
A选项,例如:sum()
C选项,例如:power()
E选项,例如:min()