csvpsql
generate Postgres table from csv file.
bash
cargo install csvpsql
```bash USAGE: csvpsql [FLAGS] [OPTIONS] [file]
FLAGS: --help Prints help information -h, --no-header -V, --version Prints version information
OPTIONS:
-d, --delimiter
ARGS:
bash
$ csvpsql example.csv
create table test (
city text not null,
region text not null,
country text not null,
population integer not null
);