개발자 도구
JSON to SQL Converter
Convert JSON arrays of objects to SQL INSERT statements — choose your database dialect and table name
1만 명 이상의 개발자가 사용
CREATE TABLE `users` ( `id` INT, `name` VARCHAR(255), `email` VARCHAR(255), `active` TINYINT(1), `score` DECIMAL(10,2) ); INSERT INTO `users` (`id`, `name`, `email`, `active`, `score`) VALUES (1, 'Alice', 'alice@example.com', 1, 9.5), (2, 'Bob', 'bob@example.com', 0, 7);
Type Inference Rules
| JSON Type | MySQL | PostgreSQL | SQLite | SQL Server |
|---|---|---|---|---|
| integer | INT | INT | INT | INT |
| float | DECIMAL(10,2) | DECIMAL(10,2) | DECIMAL(10,2) | DECIMAL(10,2) |
| string | VARCHAR(255) | VARCHAR(255) | VARCHAR(255) | VARCHAR(255) |
| boolean | TINYINT(1) | BOOLEAN | BOOLEAN | BIT |
| null | NULL | NULL | NULL | NULL |
계속 탐색
추천 개발자 도구 도구…
JSON 포맷터
JSON을 예쁘게 정리하고 구문 강조로 검증
지금 써 보기
Base64 인코딩/디코딩
Base64 문자열 인코딩 및 디코딩
지금 써 보기
URL Encoder/Decoder
Encode and decode URL components and query strings
지금 써 보기
UUID 생성기
고유 UUID 생성
지금 써 보기
Hash Generator
Generate MD5, SHA-1, SHA-256, and SHA-512 hashes from text
지금 써 보기
Regex Tester
Test and debug regular expressions with match highlighting
지금 써 보기
JWT Decoder
Decode and inspect JWT token header and payload
지금 써 보기
HTML Formatter
Beautify and format HTML code with proper indentation
지금 써 보기