I\'ve got a table that collects forms submitted from our website, but for some reason, when they created the table, they didn\'t put a timestamp in the table. I want it to e
In SQLPlus while creating a table it is be like as
SQL> create table Test
( Test_ID number not null, Test_Date date default sysdate not null );
SQL> insert into Test(id) values (1);
Test_ID Test_Date 1 08-MAR-19