Hi!
Sorry for my bad english in advance...
So, I have five tables (rpg_swords, rpg_armors, rpg_sheilds, rpg_users and rpg_potions) and I have that code:
<code>SELECT nume, item_code, iconita
FROM rpg_rpg_licori, rpg_rpg_users
WHERE item_code
IN (2,3,4,5,6,7,8, 9,10,11,12)
GROUP BY item_code</code>
// That array (2,3,4,...) is just an exemple
Now, i want to create a code where result same thing but with the rest of the tables in the same code.
Sorry, I`m newbie in sql. I searched and probably I found but i don`t know how to proceed.
Sorry for my bad english in advance...
So, I have five tables (rpg_swords, rpg_armors, rpg_sheilds, rpg_users and rpg_potions) and I have that code:
<code>SELECT nume, item_code, iconita
FROM rpg_rpg_licori, rpg_rpg_users
WHERE item_code
IN (2,3,4,5,6,7,8, 9,10,11,12)
GROUP BY item_code</code>
// That array (2,3,4,...) is just an exemple
Now, i want to create a code where result same thing but with the rest of the tables in the same code.
Sorry, I`m newbie in sql. I searched and probably I found but i don`t know how to proceed.
Comment