sql_query_parser 0.1.0

The sql_query_parser project provides a custom Rust parser for SQL-like queries, implemented using the Pest crate. It can parse SELECT statements with advanced query capabilities, including joins, conditional filtering, aggregate functions, grouping, ordering, and limiting the results.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
run:
	cargo run "sql_query.sql"


test:
	cargo test


build:
	cargo build


fmt:
	cargo fmt


clippy:
	cargo clippy


all: fmt clippy test build