This:
update rad.dcd10dm
...
where dep > to_date('03/20/2006', 'MM/DD/YYYY');
Can be coded like this:
update rad.dcd10dm
...
where dep > '20-mar-06';
I am a computer programmer, so I'll list tips and tricks about software and web development.
update rad.dcd10dm
...
where dep > to_date('03/20/2006', 'MM/DD/YYYY');
update rad.dcd10dm
...
where dep > '20-mar-06';
No comments:
Post a Comment