Online SQL til Excel Converter

Input data
bfotool loadding
Output data
bfotool loadding

Dette gratis onlineværktøj lader dig konvertere SQL til Excel. Ingen grund til at downloade eller installere nogen software. Klik for at konvertere din fil nu.

Eksempel fra SQL til Excel

Indtast data

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