split_record
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-22, from stock-splits-in-india-face-value.
| ticker | split_label | ex_date_label | face_value_after_rupees |
|---|---|---|---|
| AAPL | 4-for-1 | Aug 31, 2020 | 2.5 |
| AMZN | 20-for-1 | Jun 6, 2022 | 0.5 |
| GOOGL | 20-for-1 | Jul 18, 2022 | 0.5 |
| NVDA | 10-for-1 | Jun 10, 2024 | 1 |
| TSLA | 3-for-1 | Aug 25, 2022 | 3.33 |
- Rows × columns
- 5 × 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 | 5 distinct values (AAPL, AMZN, GOOGL…) | |
split_label |
text | 4 distinct values (10-for-1, 20-for-1, 3-for-1…) | |
ex_date_label |
text | 5 distinct values (Aug 25, 2022, Aug 31, 2020, Jul 18, 2022…) | |
face_value_after_rupees |
number | 0.5 to 3.33 |
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,
concat(toString(toUInt32(argMax(split_to, execution_date))), '-for-',
toString(toUInt32(argMax(split_from, execution_date)))) AS split_label,
formatDateTime(max(execution_date), '%b %e, %Y') AS ex_date_label,
round(10.0 * toFloat64(argMax(split_from, execution_date))
/ toFloat64(argMax(split_to, execution_date)), 2) AS face_value_after_rupees
FROM global_markets.stocks_splits
WHERE ticker IN ('AAPL', 'AMZN', 'GOOGL', 'NVDA', 'TSLA')
AND execution_date >= '2020-01-01'
AND execution_date <= '2024-12-31'
AND split_from > 0
AND split_to > 0
GROUP BY ticker
ORDER BY ticker