Messages `od`, `komu`

Mam tabulku messages a v nic sloupce :
`id`, `cas`, `od`, `komu`, `text`

Ve sloubci `od`, `komu` jsou ID uzivatelu. Potrebuju select kde se vybere k temto ID (`od`, `komu` ) i jejich nick( `user` > `id`, `nick`..)

Diky
Sloupec "nick" v tabulce ale nemáš. Nerozumím tomu.
Dve tabulky :
message:
`id`, `cas`, `od`, `komu`, `text`

user:
`id`, `nick`, `email` ...
Jestli v mysql funguje join, zkus join

select ..., m.od, u.nick
from message m
join user u on u.id=m.od
where ...
uz jsem to vyresil, melo tam bejt join :) i tak diky