From 7c04132110d50110766ac0c48344dc2402f9c633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 15 Apr 2021 18:35:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Database/Traits/QueryTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Database/Traits/QueryTrait.php b/Database/Traits/QueryTrait.php index f589b64a..50f25e9c 100644 --- a/Database/Traits/QueryTrait.php +++ b/Database/Traits/QueryTrait.php @@ -767,7 +767,7 @@ trait QueryTrait return $this; } - $this->where[] = $column . ' BETWEEN' . $start . ' AND ' . $end; + $this->where[] = $column . ' BETWEEN ' . $start . ' AND ' . $end; return $this; }