类似wufoo的数据库结构
我正在尝试构建一个动态表单应用程序,例如 wufoo。为每个表单创建新表绝对不是一个好方法。表单字段可以是布尔值、枚举、varchar 或文本。
我应该为每种数据类型创建单独的表并通过一个父表管理它们吗?或者还有比这更好的方法吗?
I am trying to build a dynamic forms app like wufoo. Creating new table for each form is definitely not a good approach. Form fields can be boolean, enum, varchar or text.
Should I make separate table for each datatype and manage them via one parent table? or is there any better approach than this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NoSQL 数据库 是关系数据库管理系统的替代方案。通常,它们允许您存储键值对的集合。这种方法可能非常适合您的要求。
NoSQL databases are an alternative to relational databases management systems. Typically they allow you to store a collection of key-value pairs. This approach might be very appropriate for your requirements.