목록의 고유한 값을 반환합니다. 목록에 null 값이 하나 이상 있으면 null 값이 반환 목록에 표시됩니다.
목록
distinctWithNull(<parameter>)
매개 변수 | 유형 |
---|---|
목록 | listString |
목록 | listBoolean |
목록 | listInteger |
목록 | listDecimal |
목록 | listDuration |
목록 | listDateTime |
목록 | listDateTimeOnly |
distinctWithNull(<listInteger>)
정수 목록을 반환합니다.
distinctWithNull(<listDecimal>)
소수점 목록을 반환합니다.
distinctWithNull(<listString>)
문자열 목록을 반환합니다.
distinctWithNull(<listDateTimeOnly>)
시간대를 고려하지 않고 날짜 시간 목록을 반환합니다.
distinctWithNull(<listDateTime>)
날짜 시간 목록을 반환합니다.
distinctWithNull(<listBoolean>)
부울 목록을 반환합니다.
distinctWithNull(<listDuration>)
기간 목록을 반환합니다.
distinctWithNull([10,2,10,null])
[10, 2, null] 반환