add
remove
split
language
chart
show hidden
hide
db<>fiddle
Db2
DocumentDB
DuckDB
Firebird
MariaDB
MySQL
Oracle
Postgres
SQL Server
SQLite
TimescaleDB
YugabyteDB
11.1
11.5
12.1
0.114 (MongoDB 7.0)
0.116 (MongoDB 7.0)
1.4 LTS
3.0
4.0
5.0
10.2
10.3
10.4
10.5
10.6
10.7
10.8
10.9
10.11
11.4
11.8
12.3
5.5
5.6
5.7
8.0
8.4
9.7
11g Release 2
18c
21c
23ai
23c
26ai
8.4
9.3
9.4
9.5
9.6
10
11
12
13
14
15
16
17
18
19 beta 3
2012
2014
2016
2017
2017 (Linux)
2019
2019 (Linux)
2022
2025
3.8
3.16
3.27
3.39
3.45
3.53
2.11
2.14
2.28
2.6
2.8
2.18
2024.2 LTS
2025.2 LTS
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
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
no sample DB
no sample DB
no sample DB
no sample DB
AdventureWorks
no sample DB
no sample DB
AdventureWorks
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
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
run
abort
markdown
clear
donate
feedback
about
By using db<>fiddle, you agree to license everything you submit by
Creative Commons CC0
.
CREATE TABLE numbers ( ID INT, NAME VARCHAR(10), number INT );
INSERT INTO numbers VALUES (1, 'name1', 5), (2, 'name2', 0), (3, 'name3', 2), (4, 'name4', 7), (5, 'name5', 9), (6, 'name6', 1);
WITH cte AS ( SELECT n1.id id1, n1.name name1, n1.number number1, n2.id id2, n2.name name2, n2.number number2, n3.id id3, n3.name name3, n3.number number3 FROM numbers n1 CROSS JOIN numbers n2 CROSS JOIN numbers n3 WHERE (n1.number > 3 OR n2.number > 3 OR n3.number > 3) AND n1.id <> n2.id AND n1.id <> n3.id AND n3.id <> n2.id ORDER BY RAND() LIMIT 1 ) SELECT id1 id, name1 name, number1 number FROM cte UNION ALL SELECT id2 id, name2 name, number2 number FROM cte UNION ALL SELECT id3 id, name3 name, number3 number FROM cte
id
name
number
3
name3
2
6
name6
1
4
name4
7