Conor Cunningham from the Query Optimiser team explains here that he typically uses SELECT 1 in this case as it can make a minor performance difference in the compilation of the query.
The QP will take and expand all *'s
early in the pipeline and bind them to
objects (in this case, the list of
columns). It will then remove
unneeded columns due to the nature of
the query.
So for a simple EXISTS subquery like
this:
SELECT col1 FROM MyTable WHERE EXISTS
(SELECT * FROM Table2 WHERE
MyTable.col1=Table2.col2) The * will be
expanded to some potentially big
column list and then it will be
determined that the semantics of the
EXISTS does not require any of those
columns, so basically all of them can
be removed.
"SELECT 1" will avoid having to
examine any unneeded metadata for that
table during query compilation.
However, at runtime the two forms of
the query will be identical and will
have identical runtimes.
In testing I was not able to measure any significant difference in performance despite trying against a table with the maximum allowable number of columns (1024) and using the simplest possible query that I could think of to give every possible opportunity for this to become a significant factor.
+-----------+----------+----------+--------+
| # Columns | Avg Queries per sec | Winner |
| |----------+----------| |
| | SELECT * | SELECT 1 | |
+-----------+----------+----------+--------+
| 1 | 851.34 | 851.10 | * |
| 2 | 847.39 | 848.31 | 1 |
| 4 | 846.84 | 848.06 | 1 |
| 8 | 844.51 | 844.63 | 1 |
| 16 | 834.11 | 833.34 | * |
| 32 | 806.81 | 805.79 | * |
| 64 | 769.19 | 770.33 | 1 |
| 128 | 703.19 | 704.29 | 1 |
| 256 | 584.17 | 584.87 | 1 |
| 512 | 444.64 | 444.20 | * |
| 1024 | 260.51 | 259.76 | * |
+-----------+----------+----------+--------+
As can be seen there is no consistent winner and the difference between the two approaches is negligible.
However it is clear that the number of columns in the table does makes a difference however but that this applies to both queries.

As the table is empty this relationship does seem only explicable by the amount of column metadata. For COUNT(1) it is easy to see that this gets rewritten to COUNT(*) at some point in the process from the below.
SET SHOWPLAN_TEXT ON;
GO
SELECT COUNT(1)
FROM master..spt_values
Which gives the following plan
|--Compute Scalar(DEFINE:([Expr1003]=CONVERT_IMPLICIT(int,[Expr1004],0)))
|--Stream Aggregate(DEFINE:([Expr1004]=Count(*)))
|--Index Scan(OBJECT:([master].[dbo].[spt_values].[ix2_spt_values_nu_nc]))
My theory is that this rewrite also happens in the EXISTS case and then the column expansion described above happens. Of course I have absolutely no way of confirming this but when I attach a debugger to the SQL Server process and try the following
DECLARE @V int
WHILE (1=1)
SELECT @V=1 WHERE EXISTS (SELECT 1 FROM ##T) OPTION(RECOMPILE)
I find that in the cases where the table has 1,024 columns most of the time when I randomly break the call stack looks like something like the below indicating that it is indeed spending a large proportion of the time loading column metadata even when SELECT 1 is used (For the case where the table has 1 column randomly breaking didn't hit this bit of the call stack in 10 attempts)
sqlservr.exe!CMEDAccess::GetProxyBaseIntnl() - 0x1e2c79 bytes
sqlservr.exe!CMEDProxyRelation::GetColumn() + 0x57 bytes
sqlservr.exe!CAlgTableMetadata::LoadColumns() + 0x256 bytes
sqlservr.exe!CAlgTableMetadata::Bind() + 0x15c bytes
sqlservr.exe!CRelOp_Get::BindTree() + 0x98 bytes
sqlservr.exe!COptExpr::BindTree() + 0x58 bytes
sqlservr.exe!CRelOp_FromList::BindTree() + 0x5c bytes
sqlservr.exe!COptExpr::BindTree() + 0x58 bytes
sqlservr.exe!CRelOp_QuerySpec::BindTree() + 0xbe bytes
sqlservr.exe!COptExpr::BindTree() + 0x58 bytes
sqlservr.exe!CScaOp_Exists::BindScalarTree() + 0x72 bytes
sqlservr.exe!CScaOpArg::BindTree() + 0x20 bytes
sqlservr.exe!COptExpr::BindTree() + 0x58 bytes
sqlservr.exe!CRelOp_Select::BindTree() + 0x52 bytes
sqlservr.exe!COptExpr::BindTree() + 0x58 bytes
sqlservr.exe!CRelOp_QuerySpec::BindTree() + 0xbe bytes
sqlservr.exe!COptExpr::BindTree() + 0x58 bytes
sqlservr.exe!CRelOp_SelectQuery::BindTree() + 0x48 bytes
sqlservr.exe!COptExpr::BindTree() + 0x58 bytes
sqlservr.exe!CRelOp_Query::FAlgebrizeQuery() + 0x1fa bytes
sqlservr.exe!CProchdr::FNormQuery() + 0x31 bytes
sqlservr.exe!CProchdr::FNormalizeStep() + 0x146 bytes
sqlservr.exe!CSQLSource::FCompile() + 0x6e6 bytes
sqlservr.exe!CSQLSource::FCompWrapper() + 0xab bytes
sqlservr.exe!CSQLSource::Transform() + 0xdc52 bytes
sqlservr.exe!CSQLSource::Execute() + 0x2c8 bytes
sqlservr.exe!process_request() - 0x29e410 bytes
sqlservr.exe!process_commands() + 0x150 bytes
sqlservr.exe!SOS_Task::Param::Execute() + 0xda bytes
sqlservr.exe!SOS_Scheduler::RunTask() + 0xb4 bytes
sqlservr.exe!SOS_Scheduler::ProcessTasks() + 0x94 bytes
sqlservr.exe!SchedulerManager::WorkerEntryPoint() + 0xe7 bytes
sqlservr.exe!SystemThread::RunWorker() + 0x4c bytes
sqlservr.exe!SystemThreadDispatcher::ProcessWorker() + 0x154 bytes
sqlservr.exe!SchedulerManager::ThreadEntryPoint() + 0x137 bytes
msvcr80.dll!_callthreadstartex() Line 348 + 0x6 bytes C
msvcr80.dll!_threadstartex(void * ptd=0x0031d888) Line 326 + 0x5 bytes C
kernel32.dll!_BaseThreadStart@8() + 0x37 bytes
Edit
This manual profiling attempt is backed up by the VS 2012 code profiler
Top 15 Functions 1024 columns

Top 15 Functions 1 column

Addition
Results above are with queries run with the OPTION (RECOMPILE) hint to test the impact on compilation. When I remove this an example set of results is below.
+-----------+-----------+-----------+--------+
| # Columns | Avg Queries per sec | Winner |
| |-----------+-----------| |
| | SELECT * | SELECT 1 | |
+-----------+-----------+-----------+--------+
| 1 | 55698.26 | 56058.21 | 1 |
| 2 | 55962.67 | 56082.81 | 1 |
| 4 | 55972.91 | 56337.61 | 1 |
| 8 | 56114.84 | 56217.14 | 1 |
| 16 | 55905.96 | 56062.57 | 1 |
| 32 | 56299.97 | 56441.43 | 1 |
| 64 | 56337.83 | 56371.56 | 1 |
| 128 | 55826.06 | 56004.81 | 1 |
| 256 | 56080.07 | 55876.16 | * |
| 512 | 55575.70 | 55801.11 | 1 |
| 1024 | 55409.41 | 55171.57 | * |
| TOTAL | 615183.69 | 616425.00 | |
+-----------+-----------+-----------+--------+
I've done a couple of runs and on both occasions COUNT(1) came out about 0.2% ahead overall but there are occasions where COUNT(*) wins also and there seems quite a lot of natural variance so I am not drawing any particular conclusions from this.

Script
CREATE PROC #CompareStarVsConstant
@NumberOfColumnsInTable INT = 1024,
@BatchIterations INT = 10,
@BatchTimeoutInSeconds INT = 60,
@NumberOfStarQueries INT = 0 OUTPUT,
@NumberOfConstantQueries INT = 0 OUTPUT
AS
IF(@NumberOfColumnsInTable NOT BETWEEN 1 AND 1024) OR
(@BatchIterations < 1) OR
(@BatchTimeoutInSeconds < 1)
BEGIN
RAISERROR('Invalid Params',16,1)
RETURN
END
SET NOCOUNT ON;
IF OBJECT_ID('tempdb..##T') IS NOT NULL
DROP TABLE ##T
SELECT @NumberOfStarQueries = 0, @NumberOfConstantQueries=0
DECLARE @table_create_sql NVARCHAR(MAX)
SELECT @table_create_sql = isnull(@table_create_sql + ',','') + 'C' + LEFT(number,4) + ' INT'
FROM master..spt_values
WHERE type='P' AND
number BETWEEN 1 AND @NumberOfColumnsInTable
SET @table_create_sql = 'CREATE TABLE ##T (' + @table_create_sql + ')'
EXEC(@table_create_sql)
DECLARE @BatchCounter INT = 1,
@CurrentBatchStarted DATETIME2,
@BatchTimeoutInMicroSeconds INT = @BatchTimeoutInSeconds * 1000000
DECLARE @V int /*Holds results of execution to remove effect of results being sent back*/
WHILE @BatchCounter <= @BatchIterations
BEGIN
SET @CurrentBatchStarted = SYSDATETIME()
WHILE DATEDIFF(MICROSECOND,@CurrentBatchStarted,SYSDATETIME()) < @BatchTimeoutInMicroSeconds
BEGIN
SELECT @V=1 WHERE EXISTS (SELECT * FROM ##T) OPTION(RECOMPILE)
SET @NumberOfStarQueries +=1
END
SET @CurrentBatchStarted = SYSDATETIME()
WHILE DATEDIFF(MICROSECOND,@CurrentBatchStarted,SYSDATETIME()) < @BatchTimeoutInMicroSeconds
BEGIN
SELECT @V=1 WHERE EXISTS (SELECT 1 FROM ##T) OPTION(RECOMPILE)
SET @NumberOfConstantQueries +=1
END
SET @BatchCounter +=1;
END
DROP TABLE ##T
GO
DECLARE @NumberOfStarQueries INT = 0,
@NumberOfConstantQueries INT = 0,
@BatchIterations INT = 10,
@BatchTimeoutInSeconds INT = 7
DECLARE @TestSeconds int = 22*@BatchIterations*@BatchTimeoutInSeconds
DECLARE @SecondsPerBatch float = @BatchIterations*@BatchTimeoutInSeconds
RAISERROR('Beginning Test, Expected Completion in a little over %d seconds.',0,1,@TestSeconds) WITH NOWAIT
DECLARE @NumberOfColumnsInTable INT = 1
--Do 11 iterations checking effect of column counts from 1 to 1024
WHILE (@NumberOfColumnsInTable < = 1024)
BEGIN
EXEC #CompareStarVsConstant
@NumberOfColumnsInTable,
@BatchIterations,
@BatchTimeoutInSeconds,
@NumberOfStarQueries OUTPUT,
@NumberOfConstantQueries OUTPUT
SELECT @NumberOfColumnsInTable AS [@NumberOfColumnsInTable],
@NumberOfStarQueries/@SecondsPerBatch AS [@NumberOfStarQueries per sec],
@NumberOfConstantQueries/@SecondsPerBatch AS [@NumberOfConstantQueries per sec]
RAISERROR('',0,1) WITH NOWAIT; /*Flush Buffer so see results sooner in SSMS*/
SET @NumberOfColumnsInTable += @NumberOfColumnsInTable
END
DROP PROC #CompareStarVsConstant
TABLEas a generic term because the question was about theSELECT *vsSELECT 1(now corrected). However, I do not see the "Race Condition" in the query. Please explain that to me. – Raj More Oct 3 '11 at 11:53