prepare($sql); // Выполняю запрос $stmt->execute(['tableName' => $tableName]); // Получаю количество таблиц, если > 0, то вывожу true, иначе - false return $stmt->fetchColumn() > 0; } public function CreateTable (PDO $handle, string $tableName, DataBaseHeader $columns): bool { // TODO: Implement CreateTable() method. return false; } public function DropTable (PDO $handle, string $tableName): bool { // TODO: Implement DropTable() method. return false; } }