12 · Databases & SQL
SELECT
Read data from a table
The SQL command that reads data. Pair it with conditions to get exactly the rows you want.
Concrete example
“SELECT * FROM orders” returns every column of every order.
Read data from a table
The SQL command that reads data. Pair it with conditions to get exactly the rows you want.
“SELECT * FROM orders” returns every column of every order.