codice:
select *
from
(select min(id) as id from tabella
group by campo_marca) as tab1
left join tabella as tab2 ON tab1.id = tab2.id
ovviamente la tua versione di mysql deve supportare le subquery.