在临时表中存储注释的更好选择是什么?

发布于 2024-12-10 09:09:44 字数 141 浏览 1 评论 0原文

我正在制作一个实时网络聊天插件,该插件使用表中的数据,该表仅包含流播放时的数据。我正在考虑创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笔落惊风雨 2024-12-17 09:09:44

如果您希望保持解决方案的相关性,并且有很多理由这样做,那么您最好创建另一个表(或多个表)来管理注释。这允许您使用传统的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文