\Phpcmf\Service::M()中where怎么加或者条件
$rt = \Phpcmf\Service::M()->table_site("organization")->where('organization_id',$value)->getRow()where怎么加或者条件,像下面这样写也不行
$rt = \Phpcmf\Service::M()->table_site("organization")->where('organization_id'===$value or 'branch'===$value)->getRow();
where('organization_id="'.$value.'" or branch = "'.$value.'"')你要结合php语法把他组合成sql语句,你那样写连php都无法通过,php基础不熟悉$this->where("直接写条件"); $this->where("字段", "值");