A command which analyzes a table (potentially taking quite a while if the table is large) and outputs information for each column - things like:
- How many unique values does this column have?
- How many null rows?
- How many blank rows? (defined as empty string)
- What are the 10 most common values?
- What are the 10 least common values?
The command can output this information to the terminal, but it should also provide an option for writing the information to a database table so it can be explored later.
A command which analyzes a table (potentially taking quite a while if the table is large) and outputs information for each column - things like:
The command can output this information to the terminal, but it should also provide an option for writing the information to a database table so it can be explored later.