js-sql-parser
js-sql-parser copied to clipboard
Added support for LEFT and RIGHT functions
Added support for the below functions
SELECT LEFT('SQL Tutorial', 3) AS ExtractString;
SELECT RIGHT('SQL Tutorial', 3) AS ExtractString;
Earlier the parser was breaking as LEFT and RIGHT keywords were treated as part of joins only.
any test case ?