다음 방법을 사용하여
{지정된 사용자의 노트에 키워드 키워드가 포함된 모든 정보를 쿼리}
SQL 문
SELECT * FROM Users AS User LEFT JOIN Notes AS Note ON User.id = Note.user_id WHERE User.id = {$user_id} AND Note.subject LIKE '%{keyword}%'
그런 다음 이 SQL 문을 실행하고 모델의 쿼리 메서드를 사용합니다.
$data = $this->User->query($sql);
2. 모델의 bindModel() 및 unbindModel() 메서드를 사용합니다.
이 두 메서드에 대한 지침은 다음을 참조하세요.
http://api.cakephp.org/class/model
을 참조하세요. 우리의 접근 방식은
//重新绑定关联指定查询条件 $this->User->unbindModel('Note'); $this->User->bindModel( 'hasMany' => array( 'Note' => array( 'conditions' => array( 'Note.subject LIKE' => '%'.$keyword.'%' ) ) ) ); //指定主表条件获取数据 $data = $this->User->find('all',array( 'conditions' => array( 'User.id' => $user_id ) )); //或者 $data = $this->User->read(null,$user_id);
3입니다. . Cakephp의 핵심 동작(Behavior) Containable
을 사용하여 먼저 자체 AppModel 클래스를 만들고 /app/app_model.php
class AppModel extends Model { //加载核心行为 var $actsAs = array('Containable'); }
파일을 만든 다음 컨트롤러에 전달할 수 있습니다. 코드 쿼리
$this->User->contain('Note.subject LIKE' => '%'.$keyword.'%'); $data = $this->User->find('all',array( 'conditions' => array( 'User.id' => $user_id ) ));
는 다음
$data = $this->User->find('all',array( 'conditions' => array( 'User.id' => $user_id ), 'contain' => array( 'Note' => array( 'conditions' => array( 'Note.subject LIKE' => '%'.$keyword.'%' ) ) ) ));
과 유사하게 find 문에 직접 작성할 수도 있습니다. 참고:
쿼리하려는 경우 {User.name 또는 Note.subject에는 키워드 키워드의 모든 레코드가 포함됩니다.}
이때 Cakephp의 find 메소드는 이 쿼리를 구현할 수 없으며, 위에서 소개한 사용자 정의 SQL 문을 다음과 같이 사용해야 합니다.
SELECT * FROM users AS User LEFT JOIN notes AS Note ON User.id = Note.user_id WHERE User.name LIKE '%keyword%' OR Note.subject LIKE '%keyword%'
위 내용은 Cakephp에서 연관 테이블을 조회하는 방법을 요약한 것입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!