sql-cli 1.68.0

SQL query tool for CSV/JSON with both interactive TUI and non-interactive CLI modes - perfect for exploration and automation
Documentation
//! SQL parsing, execution, and optimization
//!
//! This module handles all SQL-related functionality including
//! parsing, query optimization, execution, and caching.

pub mod aggregate_functions;
pub mod aggregates;
pub mod cache;
pub mod cursor_aware_parser;
pub mod functions;
pub mod generators;
pub mod hybrid_parser;
pub mod parser;
pub mod query_rewriter;
pub mod recursive_parser;
pub mod script_parser;
pub mod smart_parser;
pub mod sql_highlighter;
pub mod template_expander;
pub mod where_ast;
pub mod where_parser;
pub mod window_context;
pub mod window_functions;