vitinho444 wrote:I never tried using Inner join, what does it do (sorry for offtopic)
PS: was this post a question?
Naw, wasn't a question... I didn't know really where to put this topic lol.... It basically allows you to call fields from two different tables in a query. And if both tables have the same id or name, then you can join them together to use them. Like in my user table, I have my usernames, but no other place do I show usernames. So I sometimes have to inner join the username with like the stats table, that holds all the player stats information. It really comes in handy.
Since all my information on the player is basically in the stats table, when I run a battle scenario, I can't just call from the stats table to get the username; I have to call from the user table to get the username. So joining stats and user tables together makes it much easier to handle the query.
The best way I know how to explain it

Hope it was understandable!