0 votes
in PL/SQL by
Can A View Be Mutating? If Yes, Then How?

1 Answer

0 votes
by

No, a view cannot be mutating like a table. If an UPDATE statement fires an INSTEAD OF trigger on a view, the view is not considered to be mutating. If the UPDATE statement had been executed on a table, the table would have been considered as mutating.

Related questions

0 votes
asked Mar 15, 2021 in PL/SQL by Robindeniel
0 votes
asked Mar 13, 2021 in PL/SQL by rajeshsharma
...