Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Is It Possible To Include An Insert Statement On The Same Table To Which The Trigger Is Assigned?
Home
PL/SQL
Is It Possible To Include An Insert Statement On The Same Table To Which The Trigger Is Assigned?
+1
vote
asked
Mar 18, 2021
in
PL/SQL
by
sharadyadav1986
Is It Possible To Include An Insert Statement On The Same Table To Which The Trigger Is Assigned?
#plsql-trigger
triggers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 18, 2021
by
sharadyadav1986
If an INSERT statement is used on the same table to which the trigger is associated, then this will give rise to a mutating table, as it is not possible to change the same table that is already in the process of being changed.
...