SELECT Basics
Learn how to retrieve data from Oracle database
The SELECT statement is used to retrieve data from one or more tables in the database.
Example Query
SELECT * FROM employees;
Sample Result
| ID | Name | Salary |
|---|---|---|
| 1 | Alice | 5000 |