<aside> 📚 Notes from: SQL Ultimate Course by Data With Baraa — PDF 02 (Part 2)

</aside>


What is SELECT?

SELECT is a DQL (Data Query Language) command used to ask questions and retrieve data from a database. It does NOT modify data.

SELECT *
FROM customers

SQL Query Clauses Overview


SELECT * — All Columns

Retrieves every column from the table. Equivalent to saying 'give me everything'.

SELECT *
FROM customers