i have created a table with the system date as one of the coloumn:
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 when ever i open that table
