I have one table with varchar2 datatypes like below
create table t11 (aa varchar2(100),bb varchar2(100));
Now, if I trying to insert systimestamp
into above, values are getting inserted:
insert into t11 values (systimestamp,systimestamp);
commit;
Question is why this conversion is allowed in Oracle.
I am using Oracle 11g.