A validating SQL lexer and parser with a focus on MySQL dialect.
Please use Composer to install:
composer require phpmyadmin/sql-parser
Command line utility to syntax highlight SQL query:
./vendor/bin/highlight-query --query "SELECT 1"
Command line utility to lint SQL query:
./vendor/bin/lint-query --query "SELECT 1"
echo SqlParser\Utils\Formatter::format($query, array('type' => 'html'));
require __DIR__."/vendor/autoload.php";
$query1 = "select * from a";
$parser = new SqlParser\Parser($query1);
// inspect query
var_dump($parser->statements[0]); // outputs object(SqlParser\Statements\SelectStatement)
// modify query by replacing table a with table b
$table2 = new \SqlParser\Components\Expression("", "b", "", "");
$parser->statements[0]->from[0] = $table2;
// build query again from an array of object(SqlParser\Statements\SelectStatement) to a string
$statement = $parser->statements[0];
$query2 = $statement->build();
var_dump($query2); // outputs string(19) "SELECT * FROM `b` "
This library was originally created during the Google Summer of Code 2015 and has been used by phpMyAdmin since version 4.5.