Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

George Farias Sena

full join não funciona

Recommended Posts

então, você consegue fazer um full, usando a quantidade de selects necessárias, mais union all ... não tenho certeza, da uma olhada no manual do mysql, o manual do mysql é f*da, tem tudo la !!

Compartilhar este post


Link para o post
Compartilhar em outros sites

Há como emular.

You can emulate FULL OUTER JOIN using UNION (from MySQL 4.0.0 on):with two tables t1, t2:SELECT * FROM t1LEFT JOIN t2 ON t1.id = t2.idUNIONSELECT * FROM t1RIGHT JOIN t2 ON t1.id = t2.idwith three tables t1, t2, t3:SELECT * FROM t1LEFT JOIN t2 ON t1.id = t2.idLEFT JOIN t3 ON t2.id = t3.idUNIONSELECT * FROM t1RIGHT JOIN t2 ON t1.id = t2.idLEFT JOIN t3 ON t2.id = t3.idUNIONSELECT * FROM t1RIGHT JOIN t2 ON t1.id = t2.idRIGHT JOIN t3 ON t2.id = t3.id

Fonte: http://dev.mysql.com/doc/refman/5.0/en/join.html (No último post)

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.