README.md
Overview
========
[](https://travis-ci.org/altenwald/sqlparser)
[](https://codecov.io/gh/altenwald/sqlparser)
[](https://raw.githubusercontent.com/altenwald/sqlparser/master/COPYING)
[](https://hex.pm/packages/sqlparser)
SQL Parsers let you to parse SQL strings to generic SQL records.
Usage
-----
If you want to use, only add this in `rebar.config` using [rebar3](https://rebar3.org):
```erlang
{deps, [
{sqlparser, "0.1.0"}
]}.
```
The way to use it in the code:
```
-include_lib("sqlparser/include/sqlparser.hrl").
parsing(SQL) ->
mysql_parser:parse(SQL).
```
Enjoy!