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 PC(maker varchar(10), model varchar(10))
INSERT INTO PC VALUES('Me','pc1')
CREATE TABLE Product(model varchar(10), price decimal(10,2))
INSERT INTO Product VALUES('pc1',10.2)
CREATE VIEW PCView AS SELECT maker, a.model, price FROM PC a JOIN Product b ON a.model=b.model;
CREATE PROCEDURE createPCList ( INOUT PCList varchar(4000) ) BEGIN DECLARE finished INTEGER DEFAULT 0; DECLARE _maker VARCHAR(100) DEFAULT ""; DECLARE _price INTEGER DEFAULT 0; -- declare cursor for PCView DECLARE curPC CURSOR FOR SELECT maker, price FROM PCView; -- declare NOT FOUND handler DECLARE CONTINUE HANDLER FOR NOT FOUND SET finished = 1; SET PCList = ''; OPEN curPC; getPC: LOOP FETCH curPC INTO _maker,_price; IF finished = 1 THEN LEAVE getPC; END IF; -- build list SET PCList = CONCAT(_maker,"- PC ", "for ", _price, PCList); END LOOP getPC; CLOSE curPC; END
call createPCList(@pclist)
SELECT @pclist
@pclist
Me- PC for 10
SELECT * FROM PCView
maker
model
price
Me
pc1
10.20