Skip to content

Commit

Permalink
[rdbms][oracle] add execution plan
Browse files Browse the repository at this point in the history
  • Loading branch information
GradedJestRisk committed Jan 3, 2025
1 parent c5007e9 commit c58565b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions RDBMS/ORACLE/SQL/explain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Execution plan

Create plan
```oracle
EXPLAIN PLAN FOR SELECT * FROM dual;
```

Display all
```oracle
SELECT * FROM PLAN_TABLE;
```

Display last
```oracle
SELECT * FROM table(dbms_xplan.display);
```

0 comments on commit c58565b

Please sign in to comment.