Every Apple stock split and what one old share becomes
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-24, from Apple Stock Split History and Ratios.
| split_date | effective_on | ratio_label | shares_today_per_old_share |
|---|---|---|---|
| 2005-02-28 | February 28, 2005 | 2-for-1 | 56 |
| 2014-06-09 | June 9, 2014 | 7-for-1 | 28 |
| 2020-08-31 | August 31, 2020 | 4-for-1 | 4 |
- Rows × columns
- 3 × 4
- Period covered
- to
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
split_date |
date | 2005-02-28 to 2020-08-31 | |
effective_on |
text | 3 distinct values | |
ratio_label |
text | 3 distinct values (2-for-1, 4-for-1, 7-for-1) | |
shares_today_per_old_share |
number | 4 to 56 | count |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
the exact SQL behind every number
SELECT
toString(s.execution_date) AS split_date,
concat(monthName(s.execution_date), ' ',
toString(toDayOfMonth(s.execution_date)), ', ',
toString(toYear(s.execution_date))) AS effective_on,
concat(toString(toUInt32(any(s.split_to))), '-for-',
toString(toUInt32(any(s.split_from)))) AS ratio_label,
toUInt32(round(exp(sum(log(toFloat64(f.split_to) / toFloat64(f.split_from)))))) AS shares_today_per_old_share
FROM
(
SELECT DISTINCT execution_date, split_from, split_to
FROM global_markets.stocks_splits
WHERE ticker = 'AAPL'
) AS s
CROSS JOIN
(
SELECT DISTINCT execution_date, split_from, split_to
FROM global_markets.stocks_splits
WHERE ticker = 'AAPL'
) AS f
WHERE f.execution_date >= s.execution_date
GROUP BY s.execution_date
ORDER BY s.execution_date
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisApple Stock Split History and Ratios
Apple's daily closes around the most recent split, split-adjusted
series 10×4
→
Apple's yearly price range, split-adjusted, 2012 through the current year
ranking 15×4
→
The twelve months before each Apple split
ranking 3×4
→
Dividend adjustment factors on every KO ex-date since 2019
series 30×4
→
Dollar volume and daily range across a large forward split (NVDA, 2024)
series 19×4
→
Every KO dividend of the past four years, one new lot each if reinvested
series 16×3
→
See all 2,170 queries →