Multiple choice technology programming languages

The boss says he doesn’t care if it’s extra work. He wants that information at the end of this week and if he likes it he’s going to want it every week. What is the best choice for this situation?

  1. Derived Table

  2. Volatile Table

  3. Global Temporary Table

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Global temporary tables persist across sessions for the same user, making them reusable for recurring weekly reports. Unlike derived tables (query-scoped) or volatile tables (session-only), GTTs remain available for repeated execution with the same structure.