Databend Native Command Line Tool
sh
cargo install bendsql
``` ❯ bendsql --help Databend Native Command Line Tool
Usage: bendsql [OPTIONS]
Options:
--help Print help information
--flight Using flight sql protocol
--tls Enable TLS
-h, --host
```sql ❯ bendsql Welcome to BendSQL. Connecting to localhost:8000 as user root.
bendsql> select avg(number) from numbers(10);
SELECT avg(number) FROM numbers(10);
┌───────────────────┐ │ avg(number) │ │ Nullable(Float64) │ ├───────────────────┤ │ 4.5 │ └───────────────────┘
1 row in 0.259 sec. Processed 10 rows, 10B (38.59 rows/s, 308B/s)
bendsql> show tables like 'd%';
SHOW TABLES LIKE 'd%';
┌───────────────────┐ │ tablesindefault │ │ String │ ├───────────────────┤ │ data │ │ data2 │ │ data3 │ │ data4 │ └───────────────────┘
4 rows in 0.106 sec. Processed 0 rows, 0B (0 rows/s, 0B/s)
bendsql> exit Bye ```
bash
❯ echo "select number from numbers(3)" | bendsql -h localhost --port 8900 --flight
0
1
2
create stage s_temp;
put fs:///tmp/a*.txt @s_temp/abc;