如何在 Elixir 中制作代码/查找表?
我正在寻找制作查找表或使用由 Python 的 Elixir 制作的关系数据库中的代码的最佳方法。我什至不确定我这里的术语是否正确。
例如,我有一个包含区域列的位置表。我希望“区域”列的值仅包含“北美”、“中美洲”、“南美洲”、“亚洲/太平洋岛屿”和其他几个值。值列表将来可能会发生变化。
Elixir 如何做到这一点?使用枚举似乎是一个坏主意,因为这些值是长文本字符串。似乎某种代码会更好(例如1 =北美,2 =南美等)如何在数据库中存储和引用这些代码?
I am looking for a/the best way to make lookup tables or use codes in a relational database made from Python's Elixir. I am not even sure my terminology here is correct.
For example, I have a Location table that has a Region column. I want the values for the Region column to only have values of "North America", "Central America", "South America", "Asia/Pacific Islands", and several others. The list of values might change in the future.
How can this be done with Elixir? Using an Enum seems like a bad idea because the values are long text strings. It seems that some kind of code would be better (like 1=North America, 2=South America, etc.) How do I store and reference these codes in the database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个建议是标准化您的数据,即在您的位置表中,区域列是一个整数值,代表您的一个区域。然后创建一个区域表,仅列出您的区域名称一次。因此,位置表仅引用区域表的索引(或外键)。
例如:您的“区域”表如下所示:
然后,您的“位置”表只是索引:
这是一个简单的,如果粗略的话,例如:
有不止一种方法可以做到这一点,这只是我的方法;我不是你会遇到的最强大的 Python 程序员。
One suggestion would be to normalize your data, i.e., in your Location table, the Region column is an Integer value, representing one of your Regions. Then create a Regions table that list your region name only once. Thus the Location table just references an index (or Foreign Key) to your Regions table.
For example: your Regions table is something like this:
Then, your Locations table just indexes this:
Here is a simple, if crude, example:
There is more than on way to do this, this is just my approach; I'm not the strongest Python programmer you'll meet.