Free learning platform · Oracle SQL*Plus

Learn SQL from Zero

A comprehensive learning platform to master Oracle databases and SQL*Plus with clear explanations, practical examples, and downloadable resources.

SQL*Plus Terminal
SQL*Plus: Release 21.0.0.0.0 - Production
Copyright (c) 1982, 2021, Oracle. All rights reserved.
SQL> SELECT first_name, salary FROM employees
SQL> WHERE salary > 5000
SQL> ORDER BY salary DESC;
FIRST_NAME SALARY
-------------------- ----------
King 24000
Kochhar 17000
De Haan 17000
10 rows selected.
SQL> _