Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: add sysdate to column name
alex wrote:
> Hello experts,
> i'm attempting to add the sysdate to (not the record) but as the
> column name.
> something like select record as sysdate.
> i'm getting an error, however.
> is this possible?
Yes, with something like this:
select 'foo' "sysdate" from dual;
![]() |
![]() |