UTL
SW_005
웹 유틸 관리 · 생산성 도구 허브
메인화면
Horizontal View
JSON Formatter
문자열 도구
날짜·시간 도구
SQL·DB 도구
개발 코드 도구
SQL·DB 도구
콤보박스로 SQL·DB 작업을 선택하고 포맷, 생성, 변환 작업을 수행합니다.
작업 선택
SQL Formatter
SQL Minifier
INSERT문 생성
CREATE TABLE문 생성
CSV → INSERT 변환
JSON → INSERT 변환
테이블 정의서 → DDL 변환
Oracle ↔ PostgreSQL 문법 변환
컬럼명 Camel Case ↔ Snake Case 변환
샘플 데이터 생성
ERD용 컬럼 정리
Input
select user_id,user_name,email from users where status='ACTIVE' order by created_at desc
결과 복사
Output
select user_id, user_name, email from users where status='ACTIVE' order by created_at desc