The question is:
List of the DW1_ tables
from the USER_OBJECTS
with table names, creation date and time in ISO standard.
that's what I have so far, but it does not work.
select table_name, to_char(create_date, 'yyyy-mm-dd') from all_tables
where table_name like 'DW1%'
group by table_name;
It said create_date is invalid identifier.
Can anyone help me with this question?