Online SQL Escape Unescape

Input data
bfotool loadding
Output data
bfotool loadding

SQL Escape Unescape työkalu auttaa sinua paeta ja Unescape SQL-merkkijono, kun haluat tulostaa SQL suoraan ei tulkitse selain.

Kuinka paeta / unescape SQL?

  • Jos haluat Escape/Unescape SQL-tietosi, lisää/kopioi ja liitä SQL-tiedot syötteeseen.
  • Voit myös ladata SQL-tiedot URL-osoitteesta napsauttamalla -painiketta tai ladata SQL-tiedot tietokoneelta napsauttamalla -painiketta.
  • Napsauta "Escape" tai "Unescape" -painiketta käsitelläksesi tiedot.
  • Kun muunnos on valmis, voit ladata tiedoston napsauttamalla painiketta.

Syöttötiedot

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

Pakenemisen jälkeen

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