이 글에서는 주로 ThinkPHP 질의문과 관련 질의의 사용법과 일반적인 질의 방법을 질의 조건으로 배열, 질의를 위한 객체 메소드 등의 기술을 포함하여 예시 형태로 소개하고 있습니다. 예제 쿼리문과 관련 쿼리 사용법을 통해 ThinkPHP를 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
thinkphp 프레임워크 페이지에서는 SQL 쿼리 문을 직접 작성하여 데이터베이스 쿼리 읽기 및 쓰기 작업을 구현할 수 있습니다. 다음은 이를 설명하는 예입니다.
일반 쿼리에 대한 문자열 쿼리 조건 외에도 배열 및 객체 쿼리 조건이 매우 일반적으로 사용되며 이는 기본 쿼리에 필요합니다.
1. 쿼리 조건으로 배열 사용
$User = M("User"); //实例化User对象 $condition['name'] = 'thinkphp'; // 把查询条件传入查询方法 $User->where($condition)->select();
2. 쿼리에는 어떤 개체든 사용할 수 있습니다. 여기서는 stdClass 내장 개체를 예로 들어보겠습니다.
$User = M("User"); // 实例化User对象 // 定义查询条件 $condition = new stdClass(); $condition->name = 'thinkphp'; // 查询name的值为thinkphp的记录 $User->where($condition)->select(); // 上面的查询条件等同于 where('name="thinkphp"') 使用对象方式查询和使用数组查询的效果是相同的,并且是可 带where条件的普通查询
2. form
$user=M('user'); $list=$user->where('id>5 and id<9')->select(); $list=$user->where($data)->select();
3. 객체 형태
$user=M('user'); $list=$user->where(array('username'=>'www.jb51.net'))->select(); $list=$user->where($data)->select();
두 테이블의 관련 쿼리:
$user=M('user'); $a=new stdClass(); $a->username='www.jb51.net; $list=$user->where($a)->select();
간격 쿼리
$M_shopping = M('Shops'); $M_product = M('Product'); $list_shops = $M_shopping->join('as shops left join hr_product as product on shops.product_id = product.p_id') ->field('product.p_id,product.p_name,shops.product_amount,shops.product_id') ->where("shops.user_cookie='".$_COOKIE['hr_think_userid']."'") ->group('shops.id') ->select();
결합 쿼리
$user=M('user'); $data['id']=array(array('gt',20),array('lt',23),'and'); $list=$user->where($data)->select();
복합 쿼리
$user=M('user'); $data['username']='pengyanjie'; $data['password']=array('eq','pengyanjie'); $data['id']=array('lt',30); $data['_logic']='or'; $list=$user->where($data)->select(); dump($list);
세 개의 데이터 테이블 관련 쿼리
$user=M('user'); $data['username']=array('eq','pengyanjie'); $data['password']=array('like','p%'); $data['_logic']='or'; $where['_complex']=$where; $where['id']=array('lt',30); $list=$user->where($data)->select();
데이터 테이블의 쿼리 조건
① 다음은 쿼리 조건을 where에 넣어주면 조건 작성이 쉬워진다$M_shopping = M('Shops'); $M_product = M('Product'); $M_proimg = M('Product_image'); $list_shops = $M_shopping->join('as shops left join hr_product as product on shops.product_id = product.p_id left join hr_product_image as productimgon productimg.p_id = product.p_id')->fiel('productimg.pi_url,product.p_id,product.p_name,shops.product_amount,shops.product_id,product.am_id, product.p_procolor,product.p_price,product_amount*p_price as totalone')->where("shops.user_cookie='".$_COOKIE['hr_think_userid']."'") ->group('shops.id')->select();② 위의 방법 외에 배열 방법도 있습니다
$m_test = M("Product"); $productmeaage = $m_test->where("p_id='$proid'")->select();
관련 추천:
ThinkPHP의 연관 모델위 내용은 ThinkPHP 쿼리문 및 관련 쿼리 사용법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!