roapi/columnq-cli
2021-07-19 22:32:59 -07:00
..
src fix: support reading arbitrary binary from stdin as table input 2021-07-19 22:32:59 -07:00
Cargo.toml lots of goodies 2021-07-18 00:06:59 -07:00
README.md lots of goodies 2021-07-18 00:06:59 -07:00

Columnq

Easy to use library and CLI to help you query tabular data with support for a rich set of growing formats data sources.

Usage

Show schemas for a specific table:

columnq(sql)> show columns from uk_cities;
+---------------+--------------+------------+-------------+-----------+-------------+
| table_catalog | table_schema | table_name | column_name | data_type | is_nullable |
+---------------+--------------+------------+-------------+-----------+-------------+
| datafusion    | public       | uk_cities  | city        | Utf8      | NO          |
| datafusion    | public       | uk_cities  | lat         | Float64   | NO          |
| datafusion    | public       | uk_cities  | lng         | Float64   | NO          |
+---------------+--------------+------------+-------------+-----------+-------------+