Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道任何可读格式的典型时间戳总是等同于日期时间第二天月年等。但是我希望能够按小时分秒搜索与日月年无关的时间。因此,我正试图围绕这种能力以及存储时间的最佳方法来思考什么是存储时间的最佳方法,这样我就可以单独围绕它创建搜索,而 mdy 不会妨碍我。
尝试使用TIME字段类型。无论如何,只有在更新行时要更新字段TIMESTAMP时才应使用字段类型。MySQL
TIME
TIMESTAMP
MySQL
$hour = date("H",$date); $minute = date("i",$date); $second = date("s",$date);
$hour = date("H",$date);
$minute = date("i",$date);
$second = date("s",$date);
并将它们保存在您的桌子上hour,minute并且second
hour
minute
second