i have created a table with the system date as one of the column:
create table nav_date as (SELECT TO_CHAR(SYSDATE, 'DD-MON-YYYY HH:MI:SS') "Current date" FROM dual)
------------------------------------------------------
how to get the current system date in the table whenever i open the table nav_date?
I mean the table should automatically update the date.
