Referring to the above scenario, what structure will you deploy?
-
Cursor table
-
Table filter
-
Dynamic procedure
-
View
-
Summary table
D
Correct answer
Explanation
Without seeing the scenario, this appears to be about choosing between database structures for a reporting/analysis need. A View is the best choice when you need to query data from multiple tables without duplicating data. Views provide a logical abstraction layer. Table filter and dynamic procedure are not standard SQL structures, while a cursor table would be inefficient.