add
remove
split
language
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 table_name ( xml BLOB );
DECLARE value CLOB := EMPTY_CLOB() || '<root> <entry> <string>NAME1</string> <string>VALUE1</string> <other><entry><string>NAME2</string><string>NOT THIS</string></entry></other> </entry> <entry> <string>NAME2</string> <string>VALUE2</string> </entry> </root>'; dest_offset INTEGER := 1; src_offset INTEGER := 1; lang_context INTEGER := DBMS_LOB.DEFAULT_LANG_CTX; result BLOB; warning INTEGER; warning_msg VARCHAR2(50); BEGIN DBMS_LOB.CreateTemporary( lob_loc => result, cache => TRUE ); DBMS_LOB.CONVERTTOBLOB( dest_lob => result, src_clob => value, amount => LENGTH( value ), dest_offset => dest_offset, src_offset => src_offset, blob_csid => DBMS_LOB.DEFAULT_CSID, lang_context => lang_context, warning => warning ); INSERT INTO table_name ( xml ) VALUES ( result ); END; /
1 rows affected
SELECT XMLQUERY( '/root/entry/string[1][text()="NAME2"]/../string[2]/text()' PASSING XMLTYPE( xml, NLS_CHARSET_ID('UTF8') ) RETURNING CONTENT ) AS value FROM table_name;
VALUE
VALUE2
SELECT value FROM table_name CROSS APPLY XMLTABLE( '/root/entry/string[1][text()="NAME2"]/..' PASSING XMLTYPE( xml, NLS_CHARSET_ID('UTF8') ) COLUMNS name VARCHAR2(20) PATH './string[1]', value VARCHAR2(20) PATH './string[2]' );
VALUE
VALUE2
SELECT REGEXP_SUBSTR( TO_CLOB( xml ), '<entry>\s*<string>NAME2</string>\s*<string>([^<]*)</string>\s*</entry>', 1, 1, 'c', 1 ) AS value FROM table_name
VALUE
NOT THIS