A database has two tables named Products and Orders. The tables are joined by a column called ProductID. You have created a query named uery1, which combines the data from the tables. If the Products table is deleted, what will happen when users run Query1?

A. Only the data of the Products table will be retrieved.
B. Only the data of the Orders table will be retrieved.
C. An error will be generated
D. The data will be successfully retrieved

C. An error will be generated.

When the Products table is deleted, the Query1 will no longer be able to find the data it needs from the Products table. As a result, it will generate an error when users attempt to run the query. The error message will indicate that the table or object (Products) does not exist.