Intro to SQL Queries
Core Query Keywords
SELECT / FROM
Pick columns and the table they come from.
DISTINCT
Returns unique values only — eliminates duplicates from the result.
LIMIT
Restrict the number of rows returned — useful for sampling huge tables.
Required Order
SELECT, FROM, JOIN, WHERE, GROUP BY, HAVING, ORDER BY, LIMIT — SQL enforces this sequence.
Noble Desktop's SQL Bootcamp covers queries, joins, aggregations, and the full SQL toolkit data analysts use every day.
While most people in the business world work within spreadsheets, larger data is stored in databases, and to access this data, we often employ the use of a Structured Query Language, or SQL. While a lot of computer programming is done through unique languages that have their own rules and syntax, SQL is almost universal among relational databases, so no matter which database system you use, you can access data in SQL.