72. Which tasks can be performed using SQL functions built into Oracle Database ? (Choose three.)
A. displaying a date in a nondefault format
B. finding the number of characters in an expression
C. substituting a character string in a text expression with a specified string
D. combining more than two columns or expressions into a single column in the output
Answer: ABC
答案解析:
题意问:内置到Oracle数据库使用SQL函数可以执行哪些任务? (选择三项)。
A.显示一个非默认格式的日期,例如:to_char()转换日期输出
B.在一个表达式中查找字符的数量,使用REGEXP_COUNT 函数。REGEXP_COUNT 返回在源串中出现的模式的次数。
C.使用指定的字符串来替换文本表达式中的字符串,replace函数。
D.联合超过两个列或表达式输出为一个列,contact只能连接两列。||可以连接多个,但它不是SQL函数。