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/

相关推荐
薪火铺子4 分钟前
MySQL 性能优化:慢查询与索引优化实战
数据库·mysql·性能优化
南境十里·墨染春水8 分钟前
C++ 日志 4—— 多线程安全与异步日志优化
数据库·c++·安全
七夜zippoe16 分钟前
DolphinDB索引设计:提升查询性能
数据库·索引·性能·查询·dolphindb
2401_8987176616 分钟前
HTML5中SVG原生动画标签Animate的基础用法
jvm·数据库·python
小江的记录本18 分钟前
【MySQL】《MySQL基础架构 面试核心考点问答清单》
前端·数据库·后端·sql·mysql·adb·面试
猫的玖月19 分钟前
(七)函数
android·数据库·sql
2401_8676239820 分钟前
mysql如何导出特定条件的查询数据_使用mysqldump加where参数
jvm·数据库·python
会编程的土豆21 分钟前
MySQL 窗口函数详解
数据库·后端·mysql
武帝为此27 分钟前
【软件开发日志介绍】
java·前端·数据库
likerhood29 分钟前
Java 反射与注解的详细讲解
java·开发语言·数据库