SQL> alter table t modify (username null); Table altered. SQL> select /*+ index(t,i_t) */ * from t; Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873 --------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 27 | 918 | 2 (0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| T | 27 | 918 | 2 (0)| 00:00:01 |
-------------------------------------------------------------------------- Note
-----
- dynamic sampling used for this statement |