Looker에서 Relation Ship 지정 및 기본 키
3982 단어 Looker데이터베이스relationship
개요
초보의 초보이므로, 자세한 분은 스루 해 주세요.
실수
explore: ManyTable{
join: OneTable{
relationship: ????★ここ★????
sql_on: ${ManyTable.joinkey} = ${OneTable.joinkey} ;;
}
}
Relation Ship이란
many_to_one
관계성
LEFT JOIN과 건수 카운트
one_to_many
관계성
LEFT JOIN과 건수 카운트
Relation Ship 지정을 잘못하면
Field 'ManyTbl Count' cannot be calculated because of a one_to_many or many_to_many join.
Add a primary key to ManyTbl
따라서
explore: ManyTable{
join: OneTable{
relationship: many_to_one # Manyに対する、Oneなので、many_to_one
sql_on: ${ManyTable.joinkey} = ${OneTable.joinkey} ;;
}
}
dimension: compound_primary_key {
primary_key: yes
hidden: yes
type: string
sql: CONCAT(${TABLE}.primary_key_1, ' ', ${TABLE}.primary_key_2) ;;
}
마지막으로
Reference
이 문제에 관하여(Looker에서 Relation Ship 지정 및 기본 키), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/shnchr/items/5a9506c8e41e86d5b85f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)