Q114 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, &&col2 FROM &table WHERE &&condition = &&cond;
- (B). SELECT &col1, &col2 FROM &&table WHERE &condition;
- (C). SELECT &col1, &col2 FROM “&table” WHERE &condition;
- (D). SELECT ‘&&col1’, ‘&&col2’ FROM &table WHERE ‘&&condition’ = ‘&cond’;
- (E). SELECT &&col1, &&col2 FROM &table WHERE &&condition;
Xem thêm:
- Alter table bảng lớn mà không bị treo DB như thế nào?
- Hướng dẫn dựng LAB thực hành Oracle database 19c
- Q28 Which two statements are true about GLOBAL TEMPORARY TABLES?
- Xếp hạng các hệ quản trị Cơ sở dữ liệu phổ biến nhất update 7/2024
- Q84 Which three statements are true about the Oracle join and ANSI join syntax?