mercoledì 3 giugno 2009
martedì 19 maggio 2009
giovedì 19 febbraio 2009
Microelettronica
La Microelettronica è la scienza e la tecnologia
del controllo degli elettroni.
Questo termine oggi indica l'insieme di conoscenze pratiche e teoriche necessarie per progettare e realizzare apparati in grado di elaborare grandezze fisiche.
Le principali applicazioni sono:
- Telecomunicazioni
- Informatica
- Controllo di robot e macchine industriali
- Controllo di ascensori e impianti automatizzati
- Diagnostica e clinica medica
- Strumenti di misura
- Visione artificiale
- Veicoli stradali e ferroviari
- Conversione dell'energia elettrica
Puoi iscriverti a questo sito cliccando sulla domanda di iscrizione:
lunedì 9 febbraio 2009
martedì 3 febbraio 2009
lunedì 2 febbraio 2009
venerdì 30 gennaio 2009
martedì 27 gennaio 2009
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;
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;
lunedì 12 gennaio 2009
select count(*) from studente;select count(*) from programmazione;select count(*) from modulo;select count(*) from voto;
-------------------------------------------------------------
select idStudente, avg(voto) from voto where idStudente=8 group by idStudente, idMateria;
-------------------------------------------------------------
select idStudente, idMateria, avg(voto) from voto where idStudente=8 group by idStudente, idMateria;
-------------------------------------------------------------
select studente.nome, idMateria, avg(voto) from voto, studente where studente.idStudente=voto.idStudente and voto.idStudente=8 group by voto.idStudente, idMateria;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria and voto.idStudente=8 group by voto.idStudente, voto.idMateria;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria group by voto.idStudente, voto.idMateria order by studente.nome asc;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria group by voto.idStudente, voto.idMateria order by studente.nome desc;
-------------------------------------------------------------
-------------------------------------------------------------
select idStudente, avg(voto) from voto where idStudente=8 group by idStudente, idMateria;
-------------------------------------------------------------
select idStudente, idMateria, avg(voto) from voto where idStudente=8 group by idStudente, idMateria;
-------------------------------------------------------------
select studente.nome, idMateria, avg(voto) from voto, studente where studente.idStudente=voto.idStudente and voto.idStudente=8 group by voto.idStudente, idMateria;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria and voto.idStudente=8 group by voto.idStudente, voto.idMateria;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria group by voto.idStudente, voto.idMateria order by studente.nome asc;
-------------------------------------------------------------
select studente.nome, materia.nome, avg(voto) from voto, studente, materia where studente.idStudente=voto.idStudente and materia.idMateria=voto.idMateria group by voto.idStudente, voto.idMateria order by studente.nome desc;
-------------------------------------------------------------
Iscriviti a:
Post (Atom)