합쭈기 programming

[Laravel] and 절에 or 넣을때 본문

Dev story

[Laravel] and 절에 or 넣을때

innocent_k 2015. 12. 8. 11:11

where('code','=','p_')->orWhere('sub_code','=','e_')를 하면 



and code = 'p_' or sub_code = 'e_'



이런식에 쿼리문이 되고 


where(function($query){

                        $query->where('code', '=', 'p_')

                        ->orWhere('sub_code', '=', 'e_');

                    });

이렇게 하면 



and (code = 'p_' or sub_code = 'e_') 



이런 쿼리문이 된다.