Queries Producing the same result.

vishalneeraj-24503
Posted by vishalneeraj-24503 under Sql Server category on | Points: 40 | Views : 790
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;

Comments or Responses

Login to post response