【店小二】公告:

格式化sql
4865  |   |   |  171

功能介紹

1.多資料庫在線sql格式化,支持(oracle/pg/mysql等)多種資料庫sql格式化
2.支持關鍵字大小寫
3.去注釋

示例

create table if not exists user (
    id int not null auto_increment,
    name varchar(10) not null comment '姓名',
    gender tinyint not null default 0 comment '性別 0-未知 1-男 2-女',
    age int not null comment '年齡',
    created_date datetime default current_timesp,
    updated_date datetime default current_timesp on update current_timesp,
    primary key (id)
);

處理後

CREATE TABLE IF NOT EXISTS user (
    id INT NOT NULL auto_increment,
    name VARCHAR(10) NOT NULL comment '姓名',
    gender TINYINT NOT NULL DEFAULT 0 comment '性別 0-未知 1-男 2-女',
    age INT NOT NULL comment '年齡',
    created_date DATETIME DEFAULT CURRENT_TIMESP,
    updated_date DATETIME DEFAULT CURRENT_TIMESP ON UPDATE CURRENT_TIMESP,
    PRIMARY KEY (id)
);