sql question
Hi All,
SQL> select distinct degree from dba_tables;
DEGREE
------------------------------
1
4
8
DEFAULT
Why isn't returning anything
SQL> select table_name from dba_tables where owner='USER' and degree='DEFAULT';
no rows selected
Thanks.