Hello,
I need help with date.
create table blah
(
custnum int,
startdate date,
enddate date
);
How do I get the "real date" to insert to startdate when
the data is entered?
insert into blah
(custnum, startdate, enddate)
values
(001,???,'NULL');
I need a way to fill in the '???' field.
In oracle I could use
select sysdate from dual;
Regards
Chai