Oracle SQL/PLSQL Questions & Answers:: What Is SQL Statement?
Oracle SQL/PLSQL Questions & Answers:: What Is SQL Statement?
Answers:
What is SQL statement?
SQL stands for Structured Query Language that is use for updating, deleting and inserting the information
from databases. SQL is an ANSI and ISO standard and is the de-facto standard database query language.
Oracle database also support this language.
Database triggers are a set of code that run or fire automatically when the specific operation will performed
like Insert, Update and Delete. They are store procedures that are auto configure and fire when certain
events take place in database.
Table level trigger are fire at one time but row level trigger fire on every row or on any transaction in the
table.