create table t(n number)
Table created.
insert into t values(0)
1 row(s) inserted.
call dbms_stats.gather_table_stats(null, 't')
Statement processed.
rollback
Statement processed.
select * from t
| N | 0 |
|---|