We can do comparison directly by using WHERE
clause, try following query:
select
(apply_json_data -> 'companyInformation' -> 'operationalAddress' ->> 'state') AS statvalue
from
sat_application_apply
where
(apply_json_data -> 'companyInformation' -> 'operationalAddress' ->> 'state') = 'apple';