Home
Articles
Videos
Categories
Focus Mode
Tag

#SQL

8 articles · 4 videos tagged with this topic.

#1 SQL

SQL from Scratch: History, Theory, and Why It Remains the Language of Data

Few technologies have had such a long shelf life — and such a quietly pervasive influence — as SQL. While programming languages come and go with the t...

Apr 2026 8 min read
#2 SQL

The SELECT Statement: Reading Data from a Relational Database

If you ever plan to ask a question of a database, you will almost certainly begin with the word SELECT. It is the verb of SQL — the command that retri...

May 2026 9 min read
#3 SQL

What Type Is That Column?

Every column in a database is, in a sense, a labelled box. The label tells the engine what may be stored inside, how much room to reserve, and how the...

May 2026 8 min read
#4 SQL

SQL JOINs: Combining Data from Multiple Tables

Relational databases deliberately scatter information across many tables — a single customer here, their orders there, their addresses somewhere else....

May 2026 9 min read
#5 SQL

From Rows to Insights: Aggregate Functions

A database that can only hand back individual rows is like a calculator that only displays the numbers you typed in. The real power of SQL appears whe...

Jun 2026 11 min read
#6 SQL

Questions Inside Questions: SQL Subqueries Explained

A subquery is a query nested inside another query — a small question whose answer feeds a larger one. Master the four places a subquery can live and y...

Jul 2026 9 min read
#7 SQL

Understanding SQL Common Table Expressions

A Common Table Expression — or CTE — is a named temporary result set that exists only for the duration of a single query. It lets you take a complicat...

Jul 2026 8 min read
#8 SQL

Understanding Temporary Tables

Imagine a whiteboard you wheel into a meeting. You scribble figures on it, refer back to them as the discussion unfolds, rearrange them — and when the...

Aug 2026 7 min read