Código:
1> create table t1 (id numeric(8))
2> Go
1> select count('cuantos registros tiene la tabla?') from t1
2> Go
-----------
0
(1 row affected)
1> insert into t1 values (1)
2> Go
(1 row affected)
1> select count('cuantos registros tiene la tabla?') from t1
2> Go
-----------
1
(1 row affected)
Solo por la polemica de cual es la diferencia entre select count(*) y select count(1)
Saludos