year_by_year
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-25, from xom-dividend-increase-history.
| year | paid_per_share_usd | payments | raises_declared |
|---|---|---|---|
| 2006 | 1.28 | 4 | 1 |
| 2007 | 1.37 | 4 | 1 |
| 2008 | 1.55 | 4 | 1 |
| 2009 | 1.66 | 4 | 1 |
| 2010 | 1.74 | 4 | 1 |
| 2011 | 1.85 | 4 | 1 |
| 2012 | 2.18 | 4 | 1 |
| 2013 | 2.46 | 4 | 1 |
| 2014 | 2.7 | 4 | 1 |
| 2015 | 2.88 | 4 | 1 |
| 2016 | 2.98 | 4 | 1 |
| 2017 | 3.06 | 4 | 1 |
| 2018 | 3.23 | 4 | 1 |
| 2019 | 3.43 | 4 | 1 |
| 2020 | 3.48 | 4 | 0 |
| 2021 | 3.49 | 4 | 1 |
| 2022 | 3.55 | 4 | 1 |
| 2023 | 3.68 | 4 | 1 |
| 2024 | 3.84 | 4 | 1 |
| 2025 | 4 | 4 | 1 |
- Rows × columns
- 20 × 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 |
|---|---|---|---|
year |
number | 2,006 to 2,025 | |
paid_per_share_usd |
number | 1.28 to 4 | US dollars |
payments |
number | every row is 4 | |
raises_declared |
number | 0 to 1 |
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.
WITH quarterly AS
(
SELECT
ex_dividend_date AS ex_date,
toFloat64(max(cash_amount)) AS rate
FROM global_markets.stocks_dividends
WHERE ticker = 'XOM'
AND frequency = 4
AND ex_dividend_date >= '2005-01-01'
AND ex_dividend_date <= today()
GROUP BY ex_dividend_date
),
stepped AS
(
SELECT
ex_date,
rate,
lagInFrame(rate) OVER (ORDER BY ex_date ASC
ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prev_rate
FROM quarterly
)
SELECT
toYear(ex_date) AS year,
round(sum(rate), 4) AS paid_per_share_usd,
count() AS payments,
countIf(prev_rate > 0 AND rate > prev_rate) AS raises_declared
FROM stepped
WHERE toYear(ex_date) >= 2006
AND toYear(ex_date) < toYear(today())
GROUP BY year
ORDER BY year ASC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.