*Screams into the void*

master
Caleb Fontenot 2023-10-02 13:28:45 +07:00
parent 933f6da297
commit 47594d9b53
26 changed files with 37 additions and 1 deletions

@ -0,0 +1,35 @@
/* list the supplier number and supplier name for suppliers who DO NOT supply any parts USE subqueries*/
select snumber
from supplier
where not exists
(select *
from spj
where spj.snumber = supplier.snumber);
/* list the supplier number and supplier name for suppliers who DO NOT supply any parts USE subqueries*/
select snumber
from supplier
where snumber in /* you may use a NOT in and and omit the FALSE at the end */
(select *
from spj
where spj.snumber = supplier.snumber) = false;
select snumber
from supplier
where snumber in
(select snumber from spj) = false;
/* AAAAAAAAAAAAAAAAAA */
select distinct snumber
from spj as c
where not exists
(select *
from project as a cross join spj as b
where c.snumber = b.snumber and not exists
(select *
from spj
where b.snumber=spj.snumber and a.jnumber = spj.jnumber))

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1,4 +1,3 @@
./binlog.000020
./binlog.000021
./binlog.000022
./binlog.000023
@ -14,3 +13,4 @@
./binlog.000034
./binlog.000035
./binlog.000036
./binlog.000037

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.