
Ultimate access to all questions.
A delta table named currency_conversion is updated daily at midnight by the central banking system. This table includes conversion rates for all currencies in the banking system. Banks need to access the most recent conversion rates whenever users perform transactions. What is the most efficient way for the central banking system to share these rates with all banks without granting direct access to the original table?_
A
Manually send the data to all the banks at midnight
B
Create a SHALLOW CLONE of the original table
C
Create a VIEW from the original table
D
Create a DEEP CLONE of the original table
E
Create a new table using the CTAS command