Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/03/2015, 15:46
Avatar de Libras
Libras
Colaborador
 
Fecha de Ingreso: agosto-2006
Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 18 años, 3 meses
Puntos: 774
Respuesta: Promedio de varios campos

en sql server si los campos son NULL no los toma en cuenta en la funcion AVG ejemplo:

Código SQL:
Ver original
  1. CREATE TABLE #temp2
  2. (
  3. id INT
  4. )
  5.  
  6.  
  7. INSERT INTO #temp2 VALUES (3)
  8. INSERT INTO #temp2 VALUES (2)
  9. INSERT INTO #temp2 VALUES (2)
  10. INSERT INTO #temp2 VALUES (NULL)
  11. INSERT INTO #temp2 VALUES (NULL)
  12. INSERT INTO #temp2 VALUES (NULL)
  13. INSERT INTO #temp2 VALUES (1)
  14. INSERT INTO #temp2 VALUES (10)
  15.  
  16. SELECT avg(id) FROM #temp2
__________________
What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me