3.g.) select distinct gyumolcs from scs.szeret ; 3.h.) select sz1.nev nev1, sz2.nev nev2 from scs.szeret sz1, scs.szeret sz2 where sz1.nev < sz2.nev and sz1.gyumolcs = sz2.gyumolcs ; 3.i.) select distinct nev from szeret where gyumolcs not in ('Alma', 'Körte') ; 3.j.) select gyumolcs, count(distinct nev) count from szeret group by gyumolcs ; 4.) select 8*3 eredmeny from dual ; 5.) desc dual select * from dual ; 6.) select 'Béla' nev from dual ; 7.c.) select distinct telepules from ir_szam where telepules like 'Ab%' ; 7.d.) select distinct megye from ir_szam ; 7.e.) select distinct megye megye_nev from ir_szam ; 7.f.) select distinct telepules from ir_szam where irszam > 9900 ; 7.g.) select telepules from ir_szam where upper(telepules) like '%DOMB%' ; 7.h.) select telepules from ir_szam where irszam between 8500 and 8600 ; 7.j.) select distinct telepules, length(telepules) hossz from ir_szam where length(telepules) = ( select max(length(telepules)) from ir_szam ) ;