创建类似于 Excel 工作表的视图的数据库结构应该是什么?意思是表格应该以json格式存储还是为单元格、行和列创建表格
大家好,
我想创建一个板,所有板都包含组,每个组都有表(行和列),因此我应该将表(行和列)保存为JSON格式或创建单独的行,列和单元等的表?
i watn创建一个像星期一的系统
Hi Everyone,
i want to create a board and all board will contain groups and each groups have tables(Rows and Columns), so should i save tables(Rows and Columns) as a json format or create separate table for rows,columns and cells etc?
i watn to create a system like monday.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于您使用的是哪种数据库,如果它是文档数据库,那么JSON是自然的方式,在SQL数据库中,更好的方法是拥有一个表示行的表,并且具有一个单独的表代表列映射的表,这将为您提供随意添加列的灵活性。
例如: -
行表
列表
Depends on what kind of database you are using, if its a document database then JSON is the natural way, in a SQL database, the better way would be to have a table representing the rows, and having a separate table representing column mapping, this will give you the flexibility to add columns at will.
For example:-
Row Table
Column Table