多语言词典应用程序的数据库表设计,有什么建议吗?
我想为我的语言构建一个与许多不同语言相关的字典 iPhone 应用程序。因此,原始语言中的一个单词在不同的语言中会有不同的翻译。对于使用 SQL 进行此类数据库设计,您有什么建议吗? 谢谢一群小伙子/姑娘们。
#Database: MySQL
#Language: Python
#Platform: Google App Engine
#Application: multi-language Dictionary
I want to build a dictionary iphone app for my language associated with many different languages. Thus, one word in the original language will have different translations into different languages. Do you have any recommendation for such a database design using SQL?
Thanks a bunch guys/gals.
#Database: MySQL
#Language: Python
#Platform: Google App Engine
#Application: multi-language Dictionary
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来像是具有基本语言 Word 的表和另一个包含基本 Word 的语言、翻译值和外键的翻译表之间的一对多。
Sounds like one-to-many between the table with the base language Word and another Translation table that would have the language, translated value, and foreign key to the base Word.