STRASMORE/EXPLORE 2,170 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,170 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

Do Stock Splits Change Your Dividend?
AAPL dividends per share: as reported and split adjustedseries · 2026-08-22 · 12×4Preview: a 12-point series, ending higher. Most recent forward split at ten large dividend payersranking · 2026-08-22 · 5×3Preview: 5 ranked values, largest first. Forward and reverse splits by year across US listingsranking · 2026-08-22 · 10×3Preview: 10 ranked values, smallest first. Days between declaration, ex-date, record and payableseries · 2026-08-22 · 16×5Preview: a 16-point series, ending lower.
How Annual Dividend Per Share Is Calculated
Declared amount against split-restated amount, per quarterseries · 2026-08-14 · 56×4Preview: a 16-point series, ending higher. Eight quarterly declarations, ex-date and pay dateseries · 2026-08-14 · 8×4Preview: a 8-point series, ending higher. Trailing four payments against the indicated rate, by quarterseries · 2026-08-14 · 16×4Preview: a 16-point series, ending higher. One set of payments, four annual dividend totalsranking · 2026-08-14 · 4×3Preview: 4 ranked values, smallest first. Ex-date to pay date across US cash dividends, by yearranking · 2026-08-14 · 7×4Preview: 7 ranked values, smallest first.
AAPL dividends per share: as reported and split adjusted

AAPL dividends per share: as reported and split adjusted

most recentas of series 12×4read in context →
AAPL dividends per share: as reported and split adjusted — 12 rows by 4 columns, computed from US exchange, SIP and OPRA data.
ex_dateex_date_prettyas_reported_usdsplit_adjusted_usd
2019-02-08February 8, 20190.730.1825
2019-05-10May 10, 20190.770.1925
2019-08-09August 9, 20190.770.1925
2019-11-07November 7, 20190.770.1925
2020-02-07February 7, 20200.770.1925
2020-05-08May 8, 20200.820.205
2020-08-07August 7, 20200.820.205
2020-11-06November 6, 20200.2050.205
2021-02-05February 5, 20210.2050.205
2021-05-07May 7, 20210.220.22
2021-08-06August 6, 20210.220.22
2021-11-05November 5, 20210.220.22
the exact SQL behind every number
SELECT
    toString(ex_dividend_date)                                                                                                       AS ex_date,
    concat(monthName(ex_dividend_date), ' ', toString(toDayOfMonth(ex_dividend_date)), ', ', toString(toYear(ex_dividend_date)))     AS ex_date_pretty,
    round(toFloat64(max(cash_amount)), 4)                                                                                            AS as_reported_usd,
    round(toFloat64(max(split_adjusted_cash_amount)), 4)                                                                             AS split_adjusted_usd
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
  AND ex_dividend_date >= '2019-01-01'
  AND ex_dividend_date <  '2022-01-01'
  AND cash_amount > 0
  AND split_adjusted_cash_amount > 0
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
$