Online HTML To SQL Converter

Input data
bfotool loadding
Output data
bfotool loadding

HTML To SQL Converter helps you to convert HTML to SQL online.

HTML to SQL converter simplest

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

Tool what is a HTML to SQL converter?

This HTML to SQL converter transforms HTML data and files into SQL data and files. This converter allows customizing input HTML and output SQL It also accepts HTML 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 SQL indentation.

How to Convert HTML to SQL?

Step 1: Select your input. Enter Data.
Step 2: Choose output options (optional) Output Options.
Step 3: Generate output.

HTML to SQL converter examples

Input Data

<table>
    <tr>
        <td>pin</td>
        <td>time</td>
    </tr>
    <tr>
        <td>0001</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0002</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0003</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0004</td>
        <td>1524810082</td>
    </tr>
</table>

Output Data

/* CREATE TABLE */
CREATE TABLE table_name(
	pin DOUBLE,
	time DOUBLE
);

/* INSERT QUERY NO: 1 */
INSERT INTO table_name(pin, time) VALUES(0001, 1524810082);

/* INSERT QUERY NO: 2 */
INSERT INTO table_name(pin, time) VALUES(0002, 1524810082);

/* INSERT QUERY NO: 3 */
INSERT INTO table_name(pin, time) VALUES(0003, 1524810082);

/* INSERT QUERY NO: 4 */
INSERT INTO table_name(pin, time) VALUES(0004, 1524810082);