Explain Explainer for MySQL Queries. Something like an upgraded EXPLAIN command for browser. Highlights and explains MySQL queries. It gives also hints and links. Hope it will help. More info here : http://mxx.mnstrl.org/
- Download last release archive and unzip it into your webroot folder or install via composer :
composer create-project rap2h/mysql-explain-explain --prefer-dist - Launch your web server, goto http://localhost/xplain or something like that
- Start typing your queries
In confg/db.php
<?php return array(
'host' => 'localhost',
'user' => 'root',
'pass' => 'pass',
'base' => 'my_database'
);Or
php bin/explain --host=localhost --user=root --pass=pass --base=my_databasephp bin/explain "select * from books where id = 1"php bin/explain ./query_data.sqlphp bin/explain ./query_data.sql --dangerphp bin/explain ./query_data.sql --warningphp bin/explain ./query_data.sql --sql-mode=ANSIMySQL EXPLAIN command is sometimes hard to understand. We try to make it more readable with some improvements. In a web browser.
- tazorax
- rap2hpoutre
- slythas
- vincent-aubert

