martedì 13 gennaio 2009

select idStudente, idMateria, voto from voto where
voto<(select avg(voto) from voto) order by idStudente;
--------------------------------------------------------------------------
select count(voto) as 'numeri voto minori media' from voto
where voto<(select avg(voto) from voto);
--------------------------------------------------------------------------
select count(voto) as 'numeri voto minori media' from voto
where voto>(select avg(voto) from voto);
--------------------------------------------------------------------------
select count(voto) as 'numeri voto minori media' from voto where
voto=(select avg(voto) from voto);
--------------------------------------------------------------------------
select count(voto) from voto;
--------------------------------------------------------------------------
select idStudente, count(voto) from voto group by idStudente;
--------------------------------------------------------------------------
select idStudente, from voto where 3>(select count(voto) from voto
group by idStudente);
--------------------------------------------------------------------------
create view numeroVoti asselect idStudente, count(voto) as voti from
voto group by idStudente;
--------------------------------------------------------------------------
select idStudente from numeroVoti where voti <3;

Nessun commento: