1:
Select distinct cnt_gebiet from VT_TBL_GEBIET where cnt_gebiet not in (Select distinct lng_gebiet from VT_TBL_ARBEIT_ZU_GEBIET)
1: 2: 3: 4: 5:
SELECT distinct cnt_gebiet FROM VT_TBL_GEBIET T1 WHERE NOT EXISTS ( SELECT NULL FROM VT_TBL_ARBEIT_ZU_GEBIET T2 WHERE T1.cnt_gebiet = T2.lng_gebiet)