More specifically functionality is:
-
remove rows from tables or views (DELETE)
-
see the execution plan for a SQL statment (EXPLAIN PLAN)
-
add new rows of data into a table or view (INSERT)
-
lock a table or view, temporarily limiting other users' access to it (LOCK TABLE)
-
retrieve data from one or more tables and views (SELECT)
-
change column values in existing rows of a table or view (UPDATE)
|