Alat SQL Beautify- Pemformat dan Pemoles SQL Online Gratis

Input data
bfotool loadding
Output data
bfotool loadding

Apa yang dapat Anda lakukan dengan SQL Viewer?

  • Percantik/Format SQL Anda.
  • Perkecil/Kompres SQL Anda.
  • Hapus komentar dari SQL.
  • Setelah Anda membuat Data SQL. Anda dapat mengunduhnya sebagai file atau menyimpannya sebagai tautan dan membagikannya.

Contoh SQL Beautifier

Sebelum Mempercantik:

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

Setelah Mempercantik:

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