aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/update/orev001909-1-intezmeny.sql
blob: a6835bd0dd3264da1cc9e666b1a625a56ec28dbb (plain)
1
2
3
4
drop table if exists _hibasZarojegyek;
create table _hibasZarojegyek (select distinct a.zaroJegyId from vizsga AS a LEFT JOIN zaroJegy AS b USING (zaroJegyId) WHERE szemeszter=1);
update zaroJegy SET szemeszter=2 WHERE zaroJegyId IN (SELECT * FROM _hibasZarojegyek);
drop table if exists _hibasZarojegyek;