Skip to content
Snippets Groups Projects
16_05_07.sql 209 B
Newer Older
delete from `study_groups` WHERE GradeID in (
    select id from grades where Degree not in ('bachelor', 'specialist', 'master')
);
delete from grades where Degree not in ('bachelor', 'specialist', 'master');