Ver Mensaje Individual
  #3  
Antiguo 25-03-2018
Avatar de TOPX
TOPX TOPX is offline
Miembro
 
Registrado: may 2008
Ubicación: Bogotá
Posts: 527
Reputación: 16
TOPX Va camino a la fama
Buen día,
Código SQL [-]
SELECT clientes.nombre 
FROM clientes 
  LEFT OUTER JOIN clientes_puntuales 
    ON clientes.nombre = clientes_puntuales.nombre
  LEFT OUTER JOIN clientes_antiguos 
    ON clientes.nombre = clientes_antiguos.nombre
WHERE clientes_puntuales.nombre IS NULL
  AND clientes_antiguos.nombre IS NULL
-
__________________
"constructive mind, destructive thoughts"
Responder Con Cita