Online SQL to Text Converter

Input data
bfotool loadding
Output data
bfotool loadding

SQL to Text converter simplest

This free online tool lets you convert a SQL file into a Text file.Just paste your SQL in the form below and it will instantly get converted to Text No need to download or install any software. Free

Tool what is a SQL to Text converter?

This SQL to Text converter transforms SQL data and files into Text data and files. This converter allows customizing input SQL and output Text It also accepts SQL files with custom column delimiter characters and field quote characters. It supports comment lines and you can optionally ignore empty lines. You can also change how many spaces to use in the output Text indentation.

How to Convert SQL to Text?

Step 1: Select your input. Enter Data.

Step 2: Choose output options (optional) Output Options.

Step 3: Generate output.

SQL To Text converter Example

Input 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

Output Data

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
----------