dbms_primeidc init...1

This commit is contained in:
최준흠 2025-04-01 16:52:25 +09:00
parent 95226c33bf
commit 4ddb221202

View File

@ -141,7 +141,7 @@ abstract class Model
public function select(mixed $columns = "*"): void
{
$columns = is_array($columns) ? implode(",", $columns) : $columns;
$this->_querys["SELECT"] = "SELECT {$columns} FROM {$this->getTable()} WHERE {$this->getWhere()}";
$this->_querys["SELECT"] = "SELECT {$columns}";
}
final public function join(string $table, mixed $match = null, $type = ""): void
{