rsql:一款功能强大的SQL命令行工具

rsql 是一款免费开源、功能丰富的 SQL 命令行客户端(CLI),可以为多种关系型数据库、本地文件、云数据服务提供统一的 SQL 查询接口。

rsql 使用 Rust 语言开发,遵循 Apache 2.0 以及 MIT 双重开源协议,代码托管在 GitHub:

https://github.com/theseus-rs/rsql

功能特性

  • 跨平台支持:包括 Windows、Linux 以及 macOS 操作系统。
  • 丰富的数据源:支持数据库(ClickHouse、CockroachDB、CrateDB、DuckDB、DynamoDB、LibSQL/Turso、MySQL/ MariaDB、PostgreSQL、Redshift、Snowflake、SQL Server、SQLite)、文件(Arrow、Avro、CSV/TSV、Excel、JSON/JSONL、ODS、ORC、Parquet、XML、YAML)以及远程数据服务(FlightSQL、HTTP/HTTPS、S3),提供统一的 SQL 接口。
  • 自动解压功能:可以自动处理压缩文件(Gzip、Brotli、Bzip2、LZ4、XZ、Zstd 等)。
  • 交互式体验:提供语法高亮、自动补全、历史命令记录等功能,支持 emacs、vi 风格快捷键;也可以直接运行 SQL 脚本。
  • 多种输出格式:查询结果的输出格式,包括 ascii、csv、expanded、html、json、jsonl、markdown、plain、psql、sqlite、tsv、unicode、xml、yaml。
  • 内置数据库:rsql 内置嵌入式 PostgreSQL(运行时下载并安装 PostgreSQL,并且以独立进程的形式启动),用于快速执行 SQL。
  • 多语言支持:rsql 界面支持 40+ 种语言,包括中文。

下载安装

Windows 平台安装命令如下:

bash 复制代码
irm https://github.com/theseus-rs/rsql/releases/latest/download/rsql_cli-installer.ps1 | iex

Linux、macOS 平台安装命令如下:

bash 复制代码
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/theseus-rs/rsql/releases/latest/download/rsql_cli-installer.sh | sh

或者,也可以通过 GitHub 下载安装文件:

https://github.com/theseus-rs/rsql/releases

使用示例

交互式命令模式:

bash 复制代码
# 连接数据库
rsql --url "postgresql://user:pass@localhost/mydb"

# 查询CSV文件
rsql --url "csv://data.csv"

# 使用DuckDB内存数据库
rsql --url "duckdb://"

查看帮助信息:

bash 复制代码
rsql> .help
.bail on|off              Stop after an error occurs
.catalogs                 List the catalogs in the database
.changes on|off           Show number of rows changed
.clear                    Clear the screen
.color on|off             Enable or disable color output
.completions on|off       Enable or disable smarter completions
.describe [table]         Describe a table in the schema
.drivers                  Display available database drivers
.echo on|prompt|off       Enable or disable echoing commands
.exit [code]              Exit the application
.footer on|off            Enable or disable result footer
.foreign [table]          Display the foreign keys
.format [format]          Set the output format for the results
.header on|off            Enable or disable result header
.help                     Show this help message
.history on|off           Show the command history
.indexes [table]          Display the indexes
.limit [limit]            Set the maximum number of results to return
.locale [locale]          Set the display locale
.output clipboard|<file>  Output contents to the system clipboard, <file> or the console
.primary [table]          Display the primary keys
.print [string]           Print the specified string
.quit                     Quit the application
.read [file]              Read a SQL file and execute it
.rows on|off              Show number of rows returned
.schemas                  List the schemas in the catalog
.sleep [seconds]          Sleep for a specified number of seconds
.system command [args]    Run command in a system shell
.tables                   List the tables in the schema
.tee clipboard|<file>     Output contents to the system clipboard or a <file>, and the console
.timer on|off             Enable or disable query execution timer
rsql>

执行单个语句:

bash 复制代码
# 查询SQLite文件
rsql --url "sqlite://database.db" -- "SELECT * FROM users LIMIT 10"

# 查询Excel文件
rsql --url "excel://report.xlsx" -- "SELECT * FROM table WHERE amount > 1000"

# 查询Parquet文件
rsql --url "parquet://data.parquet" -- "SELECT column1, COUNT(*) FROM table GROUP BY column1"

执行数据转换操作:

bash 复制代码
# CSV转化为JSON文件
rsql --url "csv://input.csv" --format json -- "SELECT * FROM input"

# 查询压缩文件
rsql --url "csv://data.csv.gz" -- "SELECT column1, column2 FROM data"

# 组合查询多种格式
rsql --url "duckdb://" -- "
  SELECT * FROM read_csv_auto('file1.csv') 
  UNION ALL 
  SELECT * FROM read_parquet('file2.parquet')
"

参考文档:https://theseus-rs.github.io/rsql/rsql_cli/

相关推荐
Mike117.1 小时前
GBase 8c 做性能优化时,我更先看统计信息、执行计划和资源池,而不是一上来就改 SQL
数据库·sql·性能优化
2401_823943202 小时前
如何从Python初学者进阶为专家?
jvm·数据库·python
l1t2 小时前
DeepSeek辅助测试不同文件格式的读写性能和大小
数据库·人工智能·python
2301_818419012 小时前
用Python和Twilio构建短信通知系统
jvm·数据库·python
小年糕是糕手2 小时前
【35天从0开始备战蓝桥杯 -- Day6】
开发语言·前端·网络·数据库·c++·蓝桥杯
2401_873204652 小时前
使用Docker容器化你的Python应用
jvm·数据库·python
gis开发2 小时前
pg2b3dm 生成建筑物3dtiles
数据库
烟花巷子2 小时前
使用Python进行网络设备自动配置
jvm·数据库·python
李少兄2 小时前
企业级数据库自动化备份
运维·数据库·mysql·自动化