What are the DML statements you can use on a synonym created for a table?
-
Select
-
Insert
-
Update
-
Delete
A,B,C,D
Correct answer
Explanation
Synonyms function as transparent aliases for underlying tables, supporting full DML operations. You can execute SELECT, INSERT, UPDATE, and DELETE statements on a synonym just as you would on the base table itself. The synonym simply redirects the operation to the actual table, so all standard table operations are available. This makes synonyms useful for simplifying long table names or providing location-independent references.