intersect intersect
두 입력 목록의 공통 값을 반환합니다. 두 목록 중 하나가 null이면 빈 목록을 반환합니다.
카테고리
목록
함수 구문
intersect(<parameters>)
매개 변수
매개변수
유형
목록 1
list
목록 2
list
서명 및 반환된 유형
intersect(listString,listString)
: listStringintersect(listDecimal,listDecimal)
: listDecimalintersect(listInteger,listInteger)
: list정수intersect(listDateTime,listDateTime)
: listDateTimeintersect(listDateTimeOnly,listDateTimeOnly)
: listDateTimeOnlyintersect(listDateOnly,listDateOnly)
: listDateOnlyintersect(listDuration,listDuration)
: listDurationintersect(listBoolean,listBoolean)
: list부울
목록을 반환합니다.
예시
intersect(
["sports", "news", "documentary"],
["sports", "movies", "documentary"]
)
["sports", "news"] 반환
intersect(
#{ExperienceDataPlatform.profile.interests},
["sports", "news", "documentary"]
)
프로필 속성과 지정된 범주 목록 간의 공통 항목을 반환합니다.
intersect(
#{ExperienceDataPlatform.profile.interests},
@event{myEvent.sport_interests}
)
프로필 속성과 지정된 이벤트 필드 간의 공통 항목을 반환합니다.
recommendation-more-help
b22c9c5d-9208-48f4-b874-1cefb8df4d76