MySQL 5 星级数据类型?
对于必须介于 1 和 5 之间的产品评级,ENUM('1','2','3','4','5') 是否是一个合理的数据类型?
谢谢!
Would ENUM('1','2','3','4','5') be a sensible datatype for a product rating which must be between 1 and 5?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这将是一个合适的数据类型,因为它强制执行您的域。
但是,如果您要将它们相加(或进行任何其他数学运算),那么数字数据类型可能会更好。
Yes, that would be an appropriate data type since it enforces your domain.
If you are going to add (or do any other mathematical operation) them together, however, a numeric data type might be better.
我建议使用
or ,为了更好的 ANSI/SQL 兼容性,使用:
使用整数类型,计算更容易。
ENUM
还不错,但有可能会搞砸,因为它是一种双字符串/int 类型(在内部,它是一个 int,但从外部看,它是一个字符串)。事实上,假设您确实觉得需要升级到 3 星或 10 星左右,那么迁移的痛苦就会少得多。I suggest using
or, for better ANSI/SQL compatibility, use:
With an integer type, it is much easier to do calculations.
ENUM
is not bad, but there is a potential to mess up because it's kind of a dual string/int type (beneath the covers, it's an int, but from the outside, it's a string). And indeed, suppose you do feel the need to go to 3 stars, or 10 stars or so, the migration will be much less painful.如果您使用的是 Mysql 8+,则使用带有
CHECK
约束的 TINYINT它不允许使用除 1、2、3、4、5 之外的值,并且还支持任何类型数学运算,例如通过简单的计算就可以得到产品的平均评分。
If you are using Mysql 8+ then you use
TINYINT
withCHECK
constraintIt would not allow value other than 1, 2, 3, 4, 5 and also support any kind of mathematical operation, for example you can get average rating of the product with simple calculation.