Subject | Re: [firebird-support] From the Secret Files |
---|---|
Author | Ivan Prenosil |
Post date | 2005-02-07T13:53:29Z |
> update blahThe statement above would use implicit cast.
> set date = date '07.02.2005'
The more obvious advantage is with date arithmetic, like
update blah
set adate = date '07.02.2005' + 1;
instead of usual
update blah
set adate = cast('07.02.2005' as date) + 1;
Ivan