Выберите правильный результат выполнения запроса select
create table table_1(n number);
create table table_2(n number);
create table table_3(n number);
insert into table_1 values(1);
insert into table_1 values(2);
insert into table_2 values(1);
insert into table_2 values(3);
insert into table_3 values(2);
insert into table_3 values(3);
select * from table_1
where n not in (select n from table_2 where n in(select * from table_3));
1. N
1
2. N
2
3. N
3
4. N
1
2
5. N
2
3
6. N
1
3
❌ 1
❌ 2
❌ 3
✔️ 4
❌ 5
❌ 6