Below queries will be producing the same results:-
select * from person
where 0 <(select count(*) from person where person_id = 1);
select * from person
where exists(select count(*) from person where person_id = 1);
select * from person
where 0 < 1;
select * from person;