Exercise · SQL & Querying
Predict, then run it
Predict the output
anchor(d) = 2025-01-31 (a non-leap year). Two months on, computed as a single jump from the anchor:
SELECT strftime(d + INTERVAL 2 MONTH, '%Y-%m-%d') AS renewal FROM anchor;
Predict the exact output.