What's the Firebird equivallent of ADDDATE, GETDATE, etc. functions?
There is none as Firebird does date/time arithmetics just like with regular numbers. For example, to delete all records older than 30 days use:
DELETE FROM t1 WHERE d1 < current_date - 30;
This example assumes that table is T1 and date field is D1. Also, take a look at FAQ #35 and FAQ #36.
Do you find this FAQ incorrect or incomplete? Please e-mail us what
needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird
databases), before it enters the main FAQ database. If you desire so, the
changes will be credited to your name. To learn more, visit our add content page.
All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.