DEV Community

sahilk1389
sahilk1389

Posted on

Parse SQL query to using antlr parsetree to mongo bson document is Java

I have a SQL like query example:

Select id,name from employee where age > 30 and department = 'IT' limit 200

The SQL query grammer is defined in an ANTLR4 grammar file. Is there any implementation that converts the parse tree of this query to a bson document?

The bson…

Top comments (0)