Online SQL naar TSV-converter

Invoergegevens
bfotool loadding
Uitvoergegevens
bfotool loadding

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

Voorbeeld van SQL naar TSV

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	name	age
1	name 1	22
2	name 2	33
3	name 3	44
4	name 4	55