Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

SELECT πŸ“

Learning Goals
  • know how to execute simple SQL SELECT commands.

  • know how to execute simple SQL SELECT commands that only return the unique values.

SELECT StatementΒΆ

The SQL SELECT statement is used to retrieve specific data from tables within a relational database. The data is return in the form of a table.

Go to the W3schools Tutorial on the SELECT statement, and complete their exercises.

SELECT DISTINCTΒΆ

The SELECT DISTINCT statement is used in SQL to return only unique (non-duplicate) values from a column or combination of columns in a query result.

Go to the W3schools Tutorial on the SELECT DISTINCT statement and complete their exercises.