다음을 통해 공유


isnotempty()

적용 대상: ✅Microsoft Fabric✅Azure Data ExplorerAzure MonitorMicrosoft Sentinel

true 인수가 빈 문자열이 아니고 null이 아닌 경우 반환합니다.

사용되지 않는 별칭: notempty()

구문

isnotempty(value)

구문 규칙에 대해 자세히 알아봅니다.

매개 변수

이름 Type 필수 Description
value scalar ✔️ 비어 있지 않은지 null인지 확인할 값입니다.

반품

true이 null이 아니고 false 그렇지 않으면

예시

시작 위치가 있는 Storm 이벤트를 찾습니다.

StormEvents
| where isnotempty(BeginLat) and isnotempty(BeginLon)