Mastodon
Home
Articles
Videos
Categories
#Tag Focus Mode
Tag

#SQL

13 articles · 5 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
#9 SQL

CTE vs Temporary Table: Which One to Use and When

Two of SQL's most useful tools for handling intermediate results look deceptively similar: the Common Table Expression (CTE) and the temporary table. ...

Aug 2026 6 min read
#10 SQL

Window Functions: Compute Without Collapsing

Aggregate functions are powerful, but they come with a cost: when you ask for a summary, you lose the detail. Window functions remove that trade-off. ...

Aug 2026 12 min read
#11 SQL

Ranking Rows in SQL: ROW_NUMBER, RANK, DENSE_RANK, and NTILE

A window function computes a value across a set of related rows without collapsing them — each row keeps its place in the output, but gains a calculat...

Aug 2026 15 min read
#12 SQL

Looking Back and Forward: LAG() and LEAD() in SQL

Most window functions look at the current row and summarise its neighbours. LAG() and LEAD() do something more direct: they reach out and grab a value...

Sep 2026 13 min read
#13 SQL

Window Frames in SQL: ROWS, RANGE, and GROUPS

Every window function operates within a window — but not every window function reads the frame. The frame is the specific subset of rows a frame-sensi...

Sep 2026 21 min read