splits_check
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 market-structure-and-break-of-structure.
| ticker | splits_in_window | last_split_on_record |
|---|---|---|
| AAPL | 0 | 2020-08-31 |
| JPM | 0 | ไม่พบในฐานข้อมูล |
| KO | 0 | 2012-08-13 |
| MSFT | 0 | 2003-02-18 |
| QQQ | 0 | ไม่พบในฐานข้อมูล |
| SPY | 0 | ไม่พบในฐานข้อมูล |
- Rows × columns
- 6 × 3
- 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 | 6 distinct values (AAPL, JPM, KO…) | |
splits_in_window |
number | every row is 0 | |
last_split_on_record |
text | 4 distinct values (2003-02-18, 2012-08-13, 2020-08-31…) |
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
t.ticker AS ticker,
toUInt32(ifNull(s.splits_in_window, 0)) AS splits_in_window,
if(empty(ifNull(s.last_split_on_record, '')), 'ไม่พบในฐานข้อมูล', s.last_split_on_record) AS last_split_on_record
FROM
(
SELECT arrayJoin(['AAPL', 'JPM', 'KO', 'MSFT', 'QQQ', 'SPY']) AS ticker
) AS t
LEFT JOIN
(
SELECT
ticker,
countIf(execution_date >= '2021-01-01') AS splits_in_window,
toString(max(execution_date)) AS last_split_on_record
FROM global_markets.stocks_splits
WHERE ticker IN ('AAPL', 'JPM', 'KO', 'MSFT', 'QQQ', 'SPY')
GROUP BY ticker
) AS s ON s.ticker = t.ticker
ORDER BY t.ticker