-
-
Save RichVRed/caa1c1e6cd3e8b24ce481e321066e8fb to your computer and use it in GitHub Desktop.
Oracle - Column Information (https://app.pluralsight.com/library/courses/oracle-performance-tuning-developers/table-of-contents)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select column_name, avg_col_len, num_distinct, num_nulls | |
| from all_tab_columns | |
| where table_name = '<<table name>>' | |
| order by column_id desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment