json 필드 유형 postgresql에서 null 값을 쿼리하는 방법 postgresql에 json 유형 필드가 있습니다.그러나 특정 필드가 null인 행을 선택할 수 없습니다. 코드: SELECT * FROM json_array_elements( '[{"name": "Toby", "occupation": "Software Engineer"}, {"name": "Zaphod", "occupation": "Galactic President"} , {"name2": "Zaphod", "occupation2": null} ]' ) AS elem where elem#>'{occupation2}' is null 이 조작은 정상적으로 동작합니다만, 다음의 에러가 표시됩니다. ERROR: operator does ..