ตัวจัดรูปแบบและโค้ด
ตัวช่วยย้าย NoSQL → SQL
MongoDB document shape → relational schema sketch.
หมายเหตุจากบรรณาธิการ
Understanding · Documents into rows — the migration nobody wants twice.
บทเชิงลึกนี้มีให้บริการเฉพาะภาษาอังกฤษในขณะนี้ เครื่องมือแปลงด้านบนทำงานในภาษาของคุณ บทความอธิบายแบบยาวยังไม่ได้แปล
คำถามที่พบบ่อย
Quick answers.
›How does it determine SQL data types?
The tool inspects the values in your JSON document. Strings are mapped to `VARCHAR`, integers to `INT` or `BIGINT`, and floating point numbers to `DECIMAL` or `FLOAT`.
›What happens to nested objects and arrays?
Nested objects are typically flattened or suggested as separate tables with foreign keys. For modern SQL dialects like PostgreSQL, you can also choose to treat them as `JSONB` columns.
›Does it support complex BSON types?
Yes, common BSON types like `ObjectId`, `ISODate`, and `NumberDecimal` are recognised and converted to their relational equivalents like `UUID`, `TIMESTAMP`, and `NUMERIC`.
›Is my data sent to a server for processing?
No. All mapping and schema generation happens locally within your browser session. Your document structure and data never leave your device.
ผู้คนยังค้นหา
เครื่องมือที่เกี่ยวข้อง
More in this room.
- ER Diagram → SQLText DSL → DDL พร้อม foreign keys และ indexes
- ตัวอธิบาย SQL Queryจัดรูปแบบ SQL และอธิบายสิ่งที่แต่ละ clause ทำ
- คำแนะนำ SQL Indexระบุ Indexes ที่หายไปจาก WHERE / JOIN / ORDER clauses
- ตัวแปลง PostgreSQL → MySQLแปลง Postgres DDL เป็น SQL ที่เข้ากันได้กับ MySQL
- เครื่องมือแปลง JSON เป็น XMLแปลง JSON เป็น XML ที่สะอาดและจัดรูปแบบถูกต้อง
- JSON Formatter & Validatorจัดรูปแบบ, ย่อขนาดและตรวจสอบ JSON — ฟรี, ไม่ต้องลงทะเบียน