- kreiranje baze
- punjenje baze iz malih tekstualih datoteka perl skriptom
- jednostavan report
select count(broj) as nr,broj,min(ime) from racun,
imenik where tel=broj group by broj order by nr desc
- kompleksan report
select count(broj) as nr,broj,sum(trajanje) as trajanje,max(ime)
from racun,imenik where '%'||tel like '%'||broj group by broj union
select count(broj) as nr,broj,sum(trajanje) as trajanje,'nepoznato' from
racun where broj not in (select tel from imenik) group by broj order by
trajanje desc
|