Db2 Developer-C 11.1
Firebird 3.0
MariaDB 10.2 (unavailable)
MariaDB 10.3
MariaDB 10.4
MariaDB 10.5
MariaDB 10.6
MySQL 5.5
MySQL 5.6
MySQL 5.7
MySQL 8.0
Node.js 18
Oracle 11g Release 2
Oracle 18c
Oracle 21c
Postgres 8.4 (unavailable)
Postgres 9.4 (unavailable)
Postgres 9.5
Postgres 9.6
Postgres 10
Postgres 11
Postgres 12
Postgres 13
Postgres 14
SQLite 3.8 (unavailable)
SQLite 3.16 (unavailable)
SQLite 3.27
SQL Server 2012 (unavailable)
SQL Server 2014
SQL Server 2016
SQL Server 2017
SQL Server 2017 (Linux)
SQL Server 2019
SQL Server 2019 (Linux)
YugabyteDB 2.6
YugabyteDB 2.8
No sample DB
Sakila
run
clear
markdown
feedback
Fiddle Statistics
MySQL 8.0
SQLite 3.27
Oracle 18c
Firebird 3.0
MariaDB 10.4
MySQL 5.7
MySQL 5.6
MySQL 5.5
MariaDB 10.3
Db2 Developer-C 11.1
SQL Server 2014
SQL Server 2016
SQL Server 2017
SQL Server 2017 (Linux)
SQL Server 2019
Oracle 21c
MariaDB 10.5
Oracle 11g Release 2
Node.js 18
MariaDB 10.6
SQL Server 2019 (Linux)
YugabyteDB 2.8
YugabyteDB 2.6
Postgres 12
Postgres 9.5
Postgres 11
Postgres 10
Postgres 9.6
Postgres 13
Postgres 14
≡
clear
markdown
feedback
By using db<>fiddle, you agree to license everything you submit by
Creative Commons CC0
.
3799226 fiddles created (41707 in the last week).
select version();
version()
8.0.27
…
hidden batch(es)
create table tab (patient varchar(10), visit int, physician varchar(10)); insert into tab values ('a', 1, 'id_1'), ('a', 2, 'id_2'), ('a', 3, 'id_1'), ('a', 4, 'id_3'), ('b', 5, 'id_1'), ('b', 6, 'id_2'), ('c', 7, 'id_1'), ('c', 8, 'id_2'), ('c', 9, 'id_3'); select * from tab;
✓
✓
patient
visit
physician
a
1
id_1
a
2
id_2
a
3
id_1
a
4
id_3
b
5
id_1
b
6
id_2
c
7
id_1
c
8
id_2
c
9
id_3
…
hidden batch(es)
select patient, visit from (select patient, visit, row_number() over (partition by patient order by visit) rn from (select patient, min(visit) as visit from tab group by patient, physician) t1 ) t2 where t2.rn = 3
patient
visit
a
4
c
9
…
hidden batch(es)