Ver Mensaje Individual
  #6 (permalink)  
Antiguo 20/10/2015, 12:54
Avatar de Lenin_Germaine
Lenin_Germaine
 
Fecha de Ingreso: junio-2007
Ubicación: Monterrey, Nuevo León
Mensajes: 82
Antigüedad: 17 años, 4 meses
Puntos: 0
Respuesta: SQL Mostrar nombre dos veces de una tabla

Gracias por contestar, mira al ejecutar me lanza esto:
Mens. 207, Nivel 16, Estado 1, Línea 8
Invalid column name 'Nombre'.
Mens. 207, Nivel 16, Estado 1, Línea 8
Invalid column name 'Nombre'.

creo que no reconoce las etiquetas M1.Nombre AS idSupIntendente1, M2.Nombre AS idSupIntendente2

Cita:
Iniciado por Libras Ver Mensaje
en teoria el query deberia de funcionar solo agregale esto:

Código SQL:
Ver original
  1. SELECT M1.Nombre AS idSupIntendente1, M2.Nombre AS idSupIntendente2
  2. FROM ACResponsables
  3. INNER JOIN AoSubContratos M1 ON
  4. ACResponsables.IdResponsable=M1.idSupIntendente1
  5. INNER JOIN AoSubContratos M2 ON
  6. ACResponsables.IdResponsable=M2.idSupIntendente2