* @copyright 2012 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 4.1.0 */ namespace Query\Drivers\Mysql; use PHPUnit\Framework\Attributes\CodeCoverageIgnore; use Query\Drivers\AbstractSQL; /** * MySQL specific SQL */ class SQL extends AbstractSQL { /** * Limit clause */ public function limit(string $sql, int $limit, ?int $offset=NULL): string { if ( ! is_numeric($offset)) { return $sql . " LIMIT {$limit}"; } return $sql . " LIMIT {$offset}, {$limit}"; } /** * Get the query plan for the sql query */ public function explain(string $sql): string { return "EXPLAIN EXTENDED {$sql}"; } /** * Random ordering keyword */ public function random(): string { return ' RAND() DESC'; } /** * Returns sql to list other databases */ public function dbList(): string { return <<<'SQL' SHOW DATABASES WHERE `Database` NOT IN ('information_schema','mysql') SQL; } /** * Returns sql to list tables */ public function tableList(string $database=''): string { // @codeCoverageIgnoreStart if ( ! empty($database)) { return "SHOW TABLES FROM `{$database}`"; } // @codeCoverageIgnoreEnd return 'SHOW TABLES'; } /** * Overridden in MySQL class */ public function systemTableList(): string { return <<<'SQL' SELECT `TABLE_NAME` FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA`='information_schema' SQL; } /** * Returns sql to list views */ public function viewList(): string { return 'SELECT `table_name` FROM `information_schema`.`views`'; } /** * Returns sql to list triggers */ #[CodeCoverageIgnore] public function triggerList(): string { return 'SHOW TRIGGERS'; } /** * Return sql to list functions */ #[CodeCoverageIgnore] public function functionList(): string { return 'SHOW FUNCTION STATUS'; } /** * Return sql to list stored procedures */ #[CodeCoverageIgnore] public function procedureList(): string { return 'SHOW PROCEDURE STATUS'; } /** * Return sql to list sequences */ public function sequenceList(): ?string { return NULL; } /** * SQL to show list of field types */ public function typeList(): string { return 'SELECT DISTINCT `DATA_TYPE` FROM `information_schema`.`COLUMNS`'; } /** * SQL to show information about columns in a table */ public function columnList(string $table): string { return "SHOW FULL COLUMNS FROM {$table}"; } /** * Get the list of foreign keys for the current * table */ public function fkList(string $table): string { return <<