Online SQL naar XML-converter

Input data
bfotool loadding
Output data
bfotool loadding

Met deze gratis online tool kun je SQL naar XML converteren. U hoeft geen software te downloaden of te installeren. Klik om uw bestand nu te converteren.

SQL naar XML-voorbeeld

Invoergegevens

CREATE TABLE peoples(
    id INTEGER PRIMARY KEY,
    name CHAR(20),
    age CHAR(2)
);

INSERT INTO peoples VALUES (1, 'name 1', '22');
INSERT INTO peoples VALUES (2, 'name 2', '33');
INSERT INTO peoples VALUES (3, 'name 3', '44');
INSERT INTO peoples VALUES (4, 'name 4', '55');

SELECT * FROM peoples

Uitvoergegevens

<?xml version="1.0" encoding="UTF-8" ?>
<root>
    <row-0>
        <id>1</id>
        <name>name 1</name>
        <age>22</age>
    </row-0>
    <row-1>
        <id>2</id>
        <name>name 2</name>
        <age>33</age>
    </row-1>
    <row-2>
        <id>3</id>
        <name>name 3</name>
        <age>44</age>
    </row-2>
    <row-3>
        <id>4</id>
        <name>name 4</name>
        <age>55</age>
    </row-3>
</root>