Formatadores e Código
Auxiliar de Migração NoSQL → SQL
MongoDB document shape → relational schema sketch.
Nota do editor
Understanding · Documents into rows — the migration nobody wants twice.
Este capítulo aprofundado está disponível apenas em inglês no momento. A ferramenta de conversão acima funciona no seu idioma; o artigo explicativo longo ainda não foi traduzido.
Perguntas frequentes
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.
As pessoas também pesquisam por
Ferramentas relacionadas
More in this room.
- Diagrama ER → SQLDSL de Texto → DDL com chaves externas e índices.
- Explicador de Queries SQLFormate qualquer SQL e explique o que cada cláusula faz.
- Recomendação de Índice SQLIdentifique índices em falta a partir de cláusulas WHERE / JOIN / ORDER.
- PostgreSQL → MySQL ConverterConverta DDL de Postgres em SQL compatível com MySQL.
- Conversor de JSON para XMLConverta JSON para XML limpo e bem formatado.
- Formatador e Validador de JSONEmbeleze, minifique e valide JSON — grátis, sem registo.