'IGNORE', 'insert' => 'IGNORE', 'delete' => 'IGNORE', ]; /** * FROM tables * * Groups tables in FROM clauses if needed, so there is no confusion * about operator precedence. * * Note: This is only used (and overridden) by MySQL. * * @return string */ protected function _fromTables(): string { if (! empty($this->QBJoin) && count($this->QBFrom) > 1) { return '(' . implode(', ', $this->QBFrom) . ')'; } return implode(', ', $this->QBFrom); } }