CakePHP에서 JOIN을 사용하여 메서드 찾기
이 질문은 CakePHP의 find를 사용하여 두 테이블, 메시지 및 사용자를 조인하는 쿼리를 수행하는 방법을 탐구합니다. 방법. 특히 message.from 필드가 users.id 필드와 같고 message.to 필드가 4인 조건을 기반으로 두 테이블에서 정보를 검색해야 합니다.
두 개의 기본 테이블이 있습니다. CakePHP에서 이 조인을 달성하는 방법: 표준 CakePHP 방식과 사용자 정의 조인을 사용합니다.
표준 CakePHP 방식
권장되는 접근 방식은 CakePHP의 표준 방법을 사용하는 것입니다. 모델 간의 관계를 생성하고 포함 가능한 동작을 사용하는 것이 포함됩니다. 방법은 다음과 같습니다.
사용자 및 메시지 모델의 관계를 정의합니다.
class User extends AppModel { public $actsAs = array('Containable'); public $hasMany = array('Message'); } class Message extends AppModel { public $actsAs = array('Containable'); public $belongsTo = array('User'); }
다음 찾기 쿼리를 수행합니다.
$this->Message->find('all', array( 'contain' => array('User'), 'conditions' => array( 'Message.to' => 4 ), 'order' => 'Message.datetime DESC' ));
사용자 정의 조인
또는 찾기 쿼리 내에서 사용자 정의 조인을 사용할 수 있습니다.
$this->Message->find('all', array( 'joins' => array( array( 'table' => 'users', 'alias' => 'UserJoin', 'type' => 'INNER', 'conditions' => array( 'UserJoin.id = Message.from' ) ) ), 'conditions' => array( 'Message.to' => 4 ), 'fields' => array('UserJoin.*', 'Message.*'), 'order' => 'Message.datetime DESC' ));
이 사용자 정의 조인에서는 조인 조건을 명시적으로 정의하고 반환할 필드를 선택합니다.
동일 모델에 대한 두 관계 사용
동일한 모델에 대해 두 개의 관계를 설정하려면 다음과 같이 정의할 수 있습니다.
class User extends AppModel { public $actsAs = array('Containable'); public $hasMany = array( 'MessagesSent' => array( 'className' => 'Message', 'foreignKey' => 'from' ), 'MessagesReceived' => array( 'className' => 'Message', 'foreignKey' => 'to' ) ); } class Message extends AppModel { public $actsAs = array('Containable'); public $belongsTo = array( 'UserFrom' => array( 'className' => 'User', 'foreignKey' => 'from' ), 'UserTo' => array( 'className' => 'User', 'foreignKey' => 'to' ) ); }
이러한 관계를 정의하면 다음과 같은 찾기 쿼리를 사용할 수 있습니다.
$this->Message->find('all', array( 'contain' => array('UserFrom'), 'conditions' => array( 'Message.to' => 4 ), 'order' => 'Message.datetime DESC' ));
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3