2
Well, I’m having some problems creating a query in mysql that searches several tables in a single query, I searched here in the stack, I found some similar questions, but I couldn’t understand the logic or method used, and the "why?" to be that way.
I have the following tables:
cards:
ID|nome_carta|id_edicao|id_tipo|efeito_desc|atk|def|link_img|id_atributo|id_lrl|quantidade
attributes:
ID|atributo
editions:
ID|nome_edicao|serial
guys:
ID|tipo
How can I perform the query to have the following result ?
Nome_Carta|Nome_Edição|Serial|Tipo|Efeito|ATK|DEF|IMG|Atributo|LRL|Quantidade
Tried to make a Join by the ids?
– rray
I didn’t know how to do it with more than one Join, I do it in a way that now that I saw it, is much more confusing. the staff helped a lot to simplify :D
– Murilo Melo