SQL - 检索数据的两个表

i try to retrieve data but i think i'm not good at sql query.

i have a table eventCategory
enter image description here

and one more table
enter image description here

This two table is created in order to use in one table this is the initplayer table.
What i want to do retrieve data like that

30191592 Izlesene.com 7 2012-02-22 izlesene_cihan_v4

How can i do that ? pls show me the way ? How can i use these two tables?

enter image description here

TRY

SELECT la.id,st.profileName, la.totalEvents,la.Date,ft.eventCategory
FROM lastTable la
INNER JOIN secondTable st ON st.id=la.id
INNER JOIN firstTable ft ON ft.id = la.eventCategoryID

You didn't say the name of the second table so I will just call it T2.

select * 
from   T2 join 
       eventCategory AS e on T2.eventCategoryID = e.id

I'm assuming your second table has an 'eventCategoryID' field. If it doesn't, then I would need to know how you would relate it to the other table.