leftJoin() 공개 메소드

The foreign table may be absent and will not be automatically deleted.
public leftJoin ( $foreign_table, $master_field = null, $join_kind = null, $_foreign_alias = null, $relation = null )
예제 #1
0
파일: Relation.php 프로젝트: atk4/atk4
 public function leftJoin($foreign_table, $master_field = null, $join_kind = null, $_foreign_alias = null)
 {
     return $this->owner->leftJoin($foreign_table, $master_field, $join_kind, $_foreign_alias, $this);
 }