select n.nak_datum_hlaseni, count(*) as pocet into tabulka_nakaza_po_dnech from nakaza n where n.typ_hlaseni='N' group by n.nak_datum_hlaseni insert into tabulka_nakaza_po_dnech values('2021-05-05',1887) update tabulka_nakaza_po_dnech set pocet=pocet/(select sum(o.ok_rozloha) from okres o) delete from tabulka_nakaza_po_dnech where year(nak_datum_hlaseni)<>2020 ALTER TABLE tabulka_nakaza_po_dnech ADD den_v_tydnu [varchar](50); truncate table tabulka_nakaza_po_dnech insert into tabulka_nakaza_po_dnech(nak_datum_hlaseni,pocet) select n.nak_datum_hlaseni, count(*) as pocet from nakaza n where n.typ_hlaseni='N' group by n.nak_datum_hlaseni drop table tabulka_nakaza_po_dnech