Database 如何在NoSQL中建立地址关系模型

Database 如何在NoSQL中建立地址关系模型,database,database-design,nosql,Database,Database Design,Nosql,我想建立一个关系模型,其中我有一个地址(完整的细节)和这个地址的所有变体 For example all three adddress below 12345 Hickory Lane #2345 NC 9893 12345 Hickory Lane Apt 2345 NC - 9893 1234 Hickory Lane Apt NC 9893 will resolve to 12345 Hickory Lane Apt No 2345 LanesBorough, NC Postal Co

我想建立一个关系模型,其中我有一个地址(完整的细节)和这个地址的所有变体

For example all three adddress below
12345 Hickory Lane #2345 NC 9893
12345 Hickory Lane Apt 2345 NC - 9893
1234 Hickory Lane Apt NC 9893

will resolve to

12345 Hickory Lane Apt No 2345 LanesBorough, NC Postal Cod 9893
写操作如下:添加变体及其相关的完整地址 读起来像这样:给定一个变体,我想得到它的完整地址

For example all three adddress below
12345 Hickory Lane #2345 NC 9893
12345 Hickory Lane Apt 2345 NC - 9893
1234 Hickory Lane Apt NC 9893

will resolve to

12345 Hickory Lane Apt No 2345 LanesBorough, NC Postal Cod 9893
我可以在传统的SQL数据库中使用DetailedAddress表(包含完整地址)和Variations表(包含参考DetailedAddress表查询的变体)对此进行建模

Detailed Address
Address Col1 | Address Col2 |... Postal Code

Variation
Detailed AddressId | VariationAddressString
我不知道如何在NoSQL数据库中对此进行建模。 非常感谢您的帮助

谢谢 凯