11/12/2008, 16:34
|
| | | Fecha de Ingreso: abril-2004 Ubicación: Peru
Mensajes: 438
Antigüedad: 20 años, 9 meses Puntos: 15 | |
Respuesta: join... como lo hago ¿?
Código:
SELECT propiedades.id,nombre,tipo.tipo
FROM propiedades p
LEFT JOIN tipo t ON t.id = p.id
INNER JOIN tabla1 t1 ON t1.id_tabla1 = p.id_tabla1
RIGHT JOIN tabla2 t2 ON t2.id_tabla2 = p.id_tabla2
.
.
.
.
|