架构中枚举的最大使用量

发布于 2024-08-13 03:07:47 字数 110 浏览 4 评论 0原文

我需要填充一个表格列,该列采用30 个不同字符串值之一。是否建议在这里使用枚举来加快处理速度。谁能提出更好的解决方案,对于存储和处理来说是最佳的(比较)?

i need to populate a table column which takes one of 30 different string values. Is it advisable to use enum here for speed up processing . Can anyone suggest better solution which is reasonably optimum for storage and processing(comparison)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

只是在用心讲痛 2024-08-20 03:07:47

您最好将字符串值放入不同的表中,然后通过 (TINYINT) id 将它们连接到您的表中。这是一种更干净、更易于维护的方法,并且性能差异(通过正确的设置和索引)可以忽略不计

you are most probably better of by putting the string values in a different table and joining them into your table by (TINYINT) id. it is a much cleaner and more maintainable approach, and the performance difference (with proper setup and indexing) is neglectable.

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