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 your_table ( id int identity primary key, fieldname varchar(100) );
insert into your_table (fieldname) values ('0001, ABCD1234;0002, EFGH432562;0003, IJKL1345hsth;');
1 rows affected
CREATE FUNCTION dbo.SplitOrdered ( @list nvarchar(max), @delim nvarchar(10) ) RETURNS TABLE WITH SCHEMABINDING AS RETURN ( WITH w(n) AS (SELECT 0 FROM (VALUES (0),(0),(0),(0)) w(n)), k(n) AS (SELECT 0 FROM w a, w b), r(n) AS (SELECT 0 FROM k a, k b, k c, k d, k e, k f, k g, k h), p(n) AS (SELECT TOP (COALESCE(LEN(@list), 0)) ROW_NUMBER() OVER (ORDER BY @@SPID) -1 FROM r), spots(p) AS ( SELECT n FROM p WHERE (SUBSTRING(@list, n, LEN(@delim + 'x') - 1) LIKE @delim OR n = 0) ), parts(p,val) AS ( SELECT p, SUBSTRING(@list, p + LEN(@delim + 'x') - 1, LEAD(p, 1, 2147483647) OVER (ORDER BY p) - p - LEN(@delim)) FROM spots AS s ) SELECT listpos = ROW_NUMBER() OVER (ORDER BY p), Item = LTRIM(RTRIM(val)) FROM parts );
;WITH x AS ( SELECT id, listpos, codes = LEFT(Item, COALESCE(NULLIF(CHARINDEX(',', Item),0),1)-1) FROM dbo.your_table CROSS APPLY dbo.SplitOrdered(fieldname, ';') AS c ) SELECT id, codes = ( (SELECT x2.codes + ' ' FROM x AS x2 WHERE x2.id = x.id ORDER BY x2.listpos FOR XML PATH(''), TYPE).value(N'./text()[1]', N'nvarchar(max)') ) FROM x GROUP BY id;
id
codes
1
0001 0002 0003