This commit is contained in:
xl
2023-05-20 23:05:38 +08:00
parent 4f6952bdc5
commit c57e606e55
+4 -4
View File
@@ -262,10 +262,10 @@ class SqlBuilder extends Component
return $select;
}
/**
* @return string
* @throws Exception
*/
/**
* @param array $select
* @return string
*/
private function _selectPrefix(array $select = ['*']): string
{
$select = "SELECT " . implode(',', $select) . " FROM " . $this->query->from;