Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/07/2012, 13:16
Avatar de Andres95
Andres95
Colaborador
 
Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 19 años, 11 meses
Puntos: 38
Busqueda Respuesta: Consulta en 3 tablas y left join

Que tal asi?

Código:
SELECT C.*
       ,L.LIB3
       ,L.CVE_CLIE 
FROM    CLIE01 C
INNER JOIN LIBRES L 
ON      L.CVE_CLIE =  C.CLAVE 
        AND L.LIB3 != '' 
LEFT JOIN ClientesAutorizados A
ON      C.CLAVE    =  A.CLAVE 
WHERE   A.CLAVE IS NULL
edit:

Perdon, tenia un error de escritura la Ñ deberia ser L ..


Saludos!
__________________
La sencillez y naturalidad son el supremo y último fin de la cultura...
--
MCTS : SQL Server 2008, .NET Framework 3.5, ASP.NET Applications.

Última edición por Andres95; 31/07/2012 a las 06:51 Razón: ortografia