Let's see if I can explain at first ...
I have two tables [topics] and [notification]
I joined these tables with INNER JOIN to get the data of both, so far so good ...
But when I need to select the [id] from the [notification] table in the while, but only returns the [id] of the table [topics], how can I retrieve the id of both in that select?
Here's my SELECT:
SELECT notification.*, topicos.* FROM notification INNER JOIN topicos ON notification.user = "USUARIO_TAL"