Formateadores y código
Ayudante de Migración de NoSQL → SQL
MongoDB document shape → relational schema sketch.
Nota del editor
Understanding · Documents into rows — the migration nobody wants twice.
Este capítulo en profundidad está disponible solo en inglés por el momento. La herramienta de conversión de arriba funciona en tu idioma; el artículo explicativo extenso aún no se ha traducido.
Preguntas frecuentes
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.
La gente también busca
Herramientas relacionadas
More in this room.
- Diagrama ER → SQLLenguaje de dominio específico de texto → DDL con claves foráneas e índices.
- Explicador de Consultas SQLFormatea cualquier SQL y explica lo que hace cada cláusula.
- Recomendación de Índices SQLDetecta índices faltantes en cláusulas WHERE / JOIN / ORDER.
- Conversor PostgreSQL → MySQLTraduce DDL de Postgres a SQL compatible con MySQL.
- Conversor de JSON a XMLConvierte JSON a XML limpio y bien formado.
- Formateador y Validador de JSONEmbellece, minifica y valida JSON — gratis, sin registrarse.