Oracle OCP 19c 认证1Z0-082考试题库(第13题)
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询Oracle OCP 19c 认证1Z0-082考试题库(第13题)-CUUG内部学员版082题库解析
13.You want to write a query that prompts for two column names and the WHERE condition each time it is executed in a session but only prompts for the table name the first time it is executed.
The variables used in your query are never undefined in your session.
Which query can be used?
A. SELECT &&col1, &&col2FROM &table WHERE &&condition = &&cond;
B. SELECT &col1, &col2FROM &&table WHERE &condition;
C. SELECT &col1, &col2FROM “&table” WHERE &condition;
D. SELECT ‘&&col1’, ‘&&col2’FROM &table WHERE ‘&&condition’ = ‘&cond’;
E. SELECT &&col1, &&col2FROM &table WHERE &&condition;