Um banco de dados possui duas tabelas conforme o diagrama relacional a seguir.

Uma pesquisa de todos os clientes que efetuaram uma ou mais compras de ao menos R$ 100 pode ser feita usando os seguintes comandos SQL, verifique a correção deles.
I. Select distinct table1.* from table1,table2 where table2.cliente=table1.id and table2.total>100;
II. Select * from table1 where id=(select distinct cliente from table2) and total>100;
III. Select * from table1 join table2 where id=table2.cliente and table2.total>100;
IV. Select distinct * from table1,(select cliente, total from table2) as aux where id=aux.cliente and aux.total>100;
Assinale a alternativa que apresenta somente os comandos CORRETOS.