il campo che relaziona le tabelle dovrebbe essere numerico. Es.:
tab1 -> id_nome, nome, altro
tab2 -> id_titolo, id_nome, titolo, altro
tab3 -> id_voto, id_nome, id_titolo, voto, altro.
ovviamente raggruppando per nome il voto relativo a "nome < vs > titolo" non ha senso.codice:select tab1.nome, count(tab2.id_titolo) as tot from tab2 left join tab1 using(id_nome) group by tab2.id_nome having tot > 1