SELECT id,id_user,content,id_category,id_station,creation_date,'pwet' as ville
FROM `comment`
UNION ALL
SELECT id,id_user,comment,id_category,id_station,creation_date,ville
FROM `tag`
WHERE comment != ""
ORDER BY creation_date DESC
LIMIT 0 , 30
et pour la jointure,
SELECT login, truc,bidule
from comment inner join user on user.id_user = comment.id_user
---------------