Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/04/2008, 09:05
Avatar de matanga
matanga
 
Fecha de Ingreso: octubre-2007
Ubicación: España
Mensajes: 1.091
Antigüedad: 17 años, 2 meses
Puntos: 85
Re: Saber cuando una tabla esta vacia

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