Ejecuto la consulta siguiente:
Select max(t.tiempo) as Tiempo_Maximo, p.codp from trabajos t, conductores c, maquinas m, proyectos p
where c.codc=t.codc and t.codm=m.codm and t.codp=p.codp and not t.codp='p01' and not t.codp='p03' group by p.codp
y no me tira error, pero me tira el siguiente Warning:
Warning: Null value eliminated from aggregate.
Que significa, o que quiere decir,
GRACIAS.CONY.