Online SQL naar YAML-converter

Input data
bfotool loadding
Output data
bfotool loadding

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

Voorbeeld van SQL naar YAML

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

- 
   id: 1
 name: "name 1"
 age: 22
- 
   id: 2
 name: "name 2"
 age: 33
- 
   id: 3
 name: "name 3"
 age: 44
- 
   id: 4
 name: "name 4"
 age: 55