Subject exisits(select *) vs exists(select pk)
Author Lutz Kutscher
Hi,

is there a difference in execution speed whether I use
exists(select * from Tb where PK='value')
or
exists(select PK from Tb where PK='value') ?

Thanks
Lutz