Db::("name")->where("a=1 or b=2")->where("c",3)->select()
select * from name where c=3 AND (a=1 OR b=2);