在临时表中存储注释的更好选择是什么?
我正在制作一个实时网络聊天插件,该插件使用表中的数据,该表仅包含流播放时的数据。我正在考虑创建一个 xml 字段来存储评论。
与创建另一个表来临时存储评论相比,这会更高效、更容易吗?
我正在使用 C# 和 sql server 2008
I am making a real-time web chat plugin that uses data from a table that will only contain the data while a stream is playing. I was thinking about making an xml field to store comments.
Would this be more efficient and easier to do then creating another table to temporarily store comments?
I am using c# and sql server 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望保持解决方案的相关性,并且有很多理由这样做,那么您最好创建另一个表(或多个表)来管理注释。这允许您使用传统的 SQL 查询对评论执行 CRUD 操作,而同时限制您对 SQL Server 特定功能的依赖。
If you want to keep your solution relational, and there are many reasons to do so, you are better off creating another table (or several) to manage the comments. This allows you to use traditional SQL queries to perform CRUD operations on the comments, while at the same time limiting your dependencies on SQL Server specific features.