What is the difference between
IF EXISTS(select 1 from t1)
and
IF EXISTS(select * from t1)
Is the first one more performant than the second?
What is the difference between
IF EXISTS(select 1 from t1)
and
IF EXISTS(select * from t1)
Is the first one more performant than the second?