18

Does ANTLR4 have a sql grammar available? If so, where can I find it?

There is a link from the ANTLR wiki, but the link is broken: grammar list

Chris Snow
  • 23,813
  • 35
  • 144
  • 309

4 Answers4

28

No, at the time of this writing, there is no v4 SQL grammar.

All v4 grammar will be put into the following Github repository (as far as I can remember from the ANTLR mailing list): https://github.com/antlr/grammars-v4

The v3 grammars here now: http://antlr3.org/grammar/list.html

EDIT - April 2018

There is now a user contributed MySQL grammar here: [dead link removed]

EDIT - February 2020

MySQL, T-SQL, PL/SQL, and SQLite grammars are all available here: https://github.com/antlr/grammars-v4/tree/master/sql

sledgebox
  • 996
  • 8
  • 12
Bart Kiers
  • 166,582
  • 36
  • 299
  • 288
8

Currently, there are plenty of sql grammars for v4 as well:

  1. MySQL
  2. PL/SQL
  3. T-SQL (Microsoft SQL Server) by KvanTTT
sledgebox
  • 996
  • 8
  • 12
Mike Koltsov
  • 336
  • 3
  • 6
3

As of Feb/6/2017, there is ANTLR4 file for t-sql, but it is community maintained, and not complete, I found many SQL statements valid to SQLServer but not able to be parsed by this grammar.

Zhan Cao
  • 31
  • 1
1

As mentioned by the other users, there are SQL grammars available online but they are not complete. I would suggest that the best way would be to use the incomplete grammar and add the grammar that is not present on the top of it as and when you require. For example, If you require translation for join clause and that is not present, then just add it on the top of it. Just make sure that the grammar you write does not break any existing grammar

This is what I did in my internship where I had to make a tool to convert SAS scripts to python. SAS being proprietary, it's grammar was not available. So we built everything from scratch.