Ver Mensaje Individual
  #4 (permalink)  
Antiguo 05/08/2007, 03:46
negro81
 
Fecha de Ingreso: febrero-2007
Mensajes: 111
Antigüedad: 17 años, 9 meses
Puntos: 0
Re: Ayuda con Query!!

select c.NomEmp, count(v.id), max(v.fecha)
from visitas v, clientes c
where (v.id=c.id) and (v.rut=c.rut);


Has probado algo así?