在数据库中存储时间 (hh:mm) 的最佳方式

Best way to store time (hh:mm) in a database(在数据库中存储时间 (hh:mm) 的最佳方式)
本文介绍了在数据库中存储时间 (hh:mm) 的最佳方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将时间存储在数据库表中,但只需要存储小时和分钟.我知道我可以只使用 DATETIME 并忽略日期的其他组成部分,但是在不存储比我实际需要的更多信息的情况下执行此操作的最佳方法是什么?

I want to store times in a database table but only need to store the hours and minutes. I know I could just use DATETIME and ignore the other components of the date, but what's the best way to do this without storing more info than I actually need?

推荐答案

您可以将其存储为午夜过后分钟数的整数:

You could store it as an integer of the number of minutes past midnight:

例如.

0 = 00:00 
60 = 01:00
252 = 04:12

然而,您需要编写一些代码来重构时间,但这应该不难.

You would however need to write some code to reconstitute the time, but that shouldn't be tricky.

这篇关于在数据库中存储时间 (hh:mm) 的最佳方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)