Find practical knowledge without the noise.

Search guides, SQL, error codes, and procedures — or browse by topic below.

388 guides · 8 topics

Oracle SQL Bootcamp

Guides filed under this topic.

Showing 103 technical documents Folder: Oracle SQL Bootcamp
Filtering…
DELETE Statement

Deleting Data from MySQL Tables

DELETE with WHEREDELETE FROM employees WHERE id = 2;Delete All RowsDELETE FROM employees;Use with caution — consider usi...

Sai Sree Ram Gundepudi Updated Jul 26, 2025 0 views
SELECT Statement

MySQL SELECT Statement

Basic SELECTSELECT * FROM employees;SELECT Specific ColumnsSELECT id, name FROM employees;

Sai Sree Ram Gundepudi Updated Jul 26, 2025 0 views
Joins

Understanding Joins in MySQL

INNER JOINSELECT e.name, d.name FROM employees e JOIN departments d ON e.dept_id = d.id;LEFT JOINSELECT e.name, d.name F...

Sai Sree Ram Gundepudi Updated Jul 26, 2025 0 views
Subqueries

Mastering Subqueries in MySQL

Subquery in WHERESELECT name FROM employees WHERE salary > (SELECT AVG(salary) FROM employees);Subquery in FROMSELECT de...

Sai Sree Ram Gundepudi Updated Jul 26, 2025 0 views