Crate risingwave_sqlparser

Source
Expand description

SQL Parser for Rust

Example code:

This crate provides an ANSI:SQL 2011 lexer and parser that can parse SQL into an Abstract Syntax Tree (AST).

use risingwave_sqlparser::parser::Parser;

let sql = "SELECT a, b, 123, myfunc(b) \
           FROM table_1 \
           WHERE a > b AND b < 100 \
           ORDER BY a DESC, b";

let ast = Parser::parse_sql(sql).unwrap();

println!("AST: {:?}", ast);

Modules§

ast
SQL Abstract Syntax Tree (AST) types
keywords
This module defines
parser
SQL Parser
parser_v2
tokenizer
SQL Tokenizer

Macros§

impl_fmt_display
impl_parse_to
parser_err