08/04/2013, 14:43
|
| Colaborador | | Fecha de Ingreso: febrero-2009 Ubicación: Manizales - Colombia
Mensajes: 5.980
Antigüedad: 15 años, 9 meses Puntos: 360 | |
Respuesta: unir varias tablas en una sola
Código SQL:
Ver originalSELECT T1.DESC_LUGAR, T2.CANTIDAD, T3.MONTO FROM (SELECT ROWNUM pk1,T1.* FROM TABLA1 T1) T1 INNER JOIN (SELECT ROWNUM pk2,T2.* FROM TABLA2 T2) T2 ON T1.PK1=T2.PK2 INNER JOIN (SELECT ROWNUM pk3,T3.* FROM TABLA3 T3) T3 ON T1.PK1=T3.PK3;
__________________ Without data, You are another person with an opinion.
W. Edwads Deming |