household_splits
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-09-26, from has-spy-ever-split.
| ticker | split_label | split_ratio | shares_after_per_share_before |
|---|---|---|---|
| AAPL | Jun 9, 2014 | 7-for-1 | 7 |
| AAPL | Aug 31, 2020 | 4-for-1 | 4 |
| TSLA | Aug 31, 2020 | 5-for-1 | 5 |
| NEE | Oct 27, 2020 | 4-for-1 | 4 |
| NVDA | Jul 20, 2021 | 4-for-1 | 4 |
| AMZN | Jun 6, 2022 | 20-for-1 | 20 |
| GOOGL | Jul 18, 2022 | 20-for-1 | 20 |
| TSLA | Aug 25, 2022 | 3-for-1 | 3 |
| WMT | Feb 26, 2024 | 3-for-1 | 3 |
| NVDA | Jun 10, 2024 | 10-for-1 | 10 |
| CMG | Jun 26, 2024 | 50-for-1 | 50 |
- Rows × columns
- 11 × 4
- 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 |
|---|---|---|---|
ticker |
text | 8 distinct values (AAPL, AMZN, CMG…) | |
split_label |
text | 10 distinct values (Aug 25, 2022, Aug 31, 2020, Feb 26, 2024…) | |
split_ratio |
text | 7 distinct values (10-for-1, 20-for-1, 3-for-1…) | |
shares_after_per_share_before |
number | 3 to 50 | 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
ticker,
formatDateTime(execution_date, '%b %e, %Y') AS split_label,
concat(toString(round(toFloat64(split_to), 2)), '-for-',
toString(round(toFloat64(split_from), 2))) AS split_ratio,
round(toFloat64(split_to) / toFloat64(split_from), 2) AS shares_after_per_share_before
FROM global_markets.stocks_splits
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'GOOGL', 'TSLA', 'WMT', 'CMG', 'NEE', 'KO')
AND execution_date >= toDate('2014-01-01')
AND execution_date < today()
AND toFloat64(split_from) > 0
ORDER BY execution_date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.