Articles filed under “lessons”
What is SQL?
The SQL SELECT Statement
SELECT statement with specific columns.
Filtering results with the WHERE Clause.
Filtering results using the WHERE Clause and GREATER THAN.
Filtering results using the WHERE Clause and the AND operator.
Filtering results using the WHERE Clause and the OR operator.
Filtering results using the WHERE Clause and the IN operator.
Filtering results using the WHERE Clause and the NOT operator.
Using wildcard comparisons with the LIKE operator.
Handling Dates
Removing duplicates from results with the DISTINCT keyword.
Sorting results using ORDER BY.
Using the CASE statement.
How to LIMIT the number of results returned.
Counting the number of rows returned with COUNT.
Counting the number of rows returned with COUNT and the WHERE clause.
Summing all values using the SUM Function.
Finding the average of numerical values using the AVG function.
Finding the minimum and maximum values using MIN and MAX functions.
Aggregate functions using the GROUP BY clause.
Using the HAVING clause to filter aggregate functions.
Handling NULL values.
Using the COALESCE function.
Using Nested Queries
Joining tables using INNER JOIN.
Joining tables using LEFT JOIN.
Joining tables using Multiple Joins.
Joining tables using UNION joins.
Using a Table Alias.
Using a Column Alias.
Joining tables using Self Joins.
The INSERT INTO Statement
The SQL UPDATE Statement
The SQL DELETE Statement
Well Done!! You've Completed The SQL Crash Course