STRASMORE/EXPLORE 2,469 QUERIES

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.

as of ranking 6×3read in context →
splits_check — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickersplits_in_windowlast_split_on_record
AAPL02020-08-31
JPM0ไม่พบในฐานข้อมูล
KO02012-08-13
MSFT02003-02-18
QQQ0ไม่พบในฐานข้อมูล
SPY0ไม่พบในฐานข้อมูล
Rows × columns
6 × 3
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for splits_check, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter