Databases•SQL
SQL Select
Course Index: SQL TutorialClick to expand
The `SELECT` statement is used to select data from a database.
The data returned is stored in a result table, called the result-set.
Sandbox EditorSQLLoading WebAssembly...
input.sql
Output (In-Memory SQLite)
Waiting for execution...
### Select Specific Columns
If you don't want all the data, you can specify exact column names instead of using the `*` wildcard.
Sandbox EditorSQLLoading WebAssembly...
input.sql
Output (In-Memory SQLite)
Waiting for execution...