建立索引时速度更快。 MySQL 中的 INT (10) 或时间戳
我只是想知道哪种字段类型是在 MySQL 数据库中存储时间戳的最佳解决方案。
目前,我将时间戳存储在 INT (10) 字段中,并通过执行 UNIX_TIMESTAMP() 插入时间。如果我要使用时间戳字段,索引时会更慢还是更快?我知道这两个字段都使用 4 个字节。
I was just wondering which field type would be the best solution for storing a timestamp in a MySQL database.
Currently I store timestamps in an INT (10) field and insert the time by doing UNIX_TIMESTAMP(). If I was to use a timestamp field would it be slower or quicker when indexed? I know both fields use 4 bytes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们都是由 4 字节整数实现的,因此索引的性能应该同样好。
They're both implemented by a 4 byte integer so the indexes should perform equally well.