sql_parser_project 0.1.0

This is a simple project to parse SQL queries using pest crate. Currently parser supports simple select queries whith where conditions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
run:
	cargo run "test-query.txt"

test:
	cargo test

build:
	cargo build

fmt:
	cargo fmt

clippy:
	cargo clippy

all: test build fmt clippy