add batch
remove batch
split batch
comment selection
show hidden batches
hide batch
highlight batch
db<>fiddle
Db2
Firebird
MariaDB
MySQL
Node.js
Oracle
Postgres
SQL Server
SQLite
TimescaleDB
YugabyteDB
Developer-C 11.1
3.0
4.0
10.2
10.3
10.4
10.5
10.6
10.7
10.8
10.9
10.11
11.4
5.5
5.6
5.7
8.0
8.4
18
11g Release 2
18c
21c
23c
8.4
9.3
9.4
9.5
9.6
10
11
12
13
14
15
16
17
2012
2014
2016
2017
2017 (Linux)
2019
2019 (Linux)
2022
3.8
3.16
3.27
3.39
2.11
2.14
2.6
2.8
2.18
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
Sakila
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
AdventureWorks
no sample DB
no sample DB
AdventureWorks
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
run
abort
markdown
donate
feedback
about
By using db<>fiddle, you agree to license everything you submit by
Creative Commons CC0
.
CREATE TABLE assignments( ASSIGNMENT_ID INTEGER NOT NULL ,ASSIGNMENT_NAME VARCHAR(17) NOT NULL ); INSERT INTO assignments(ASSIGNMENT_ID,ASSIGNMENT_NAME) VALUES (1,'Morning Tasks'); INSERT INTO assignments(ASSIGNMENT_ID,ASSIGNMENT_NAME) VALUES (2,'Afternoon Tasks'); INSERT INTO assignments(ASSIGNMENT_ID,ASSIGNMENT_NAME) VALUES (3,'Evening Tasks');
CREATE TABLE tasks( TASK_ID INTEGER NOT NULL ,ASSIGNMENT_ID INTEGER NOT NULL ,TASK_NAME VARCHAR(16) NOT NULL ,TASK_STATUS INTEGER NOT NULL ); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (1,1,'Make Bed',2); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (2,1,'Brush Teeth',2); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (3,1,'Eat Breakfast',2); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (4,1,'Commute',2); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (5,2,'Eat Lunch',2); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (5,2,'Wash Dishes',1); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (6,2,'Wash Table',1); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (7,3,'Make Supper',1); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (8,3,'Eat Supper',1); INSERT INTO tasks(TASK_ID,ASSIGNMENT_ID,TASK_NAME,TASK_STATUS) VALUES (9,3,'Wash Dishes',1);
select count(*) from assignments a where not exists ( select 1 from tasks t where t.assignment_id = a.assignment_id and t.task_status != 2 )
count(*)
1
select * from assignments a where not exists ( select 1 from tasks t where t.assignment_id = a.assignment_id and t.task_status != 2 )
ASSIGNMENT_ID
ASSIGNMENT_NAME
1
Morning Tasks