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.
2 つの日付の議事録を合計するにはどうすればよいですか? つまり、 MySQL2012-01-08 8:30を使用してから使用するまでの合計時間を知りたいということですか?2012-01-09 14:11
2012-01-08 8:30
2012-01-09 14:11
テーブルに列がinitiate_dateありfinalize_date、それらを選択して合計時間を表示したいと考えています。
initiate_date
finalize_date
タイムスタンプの違いをお勧めします
例えば
TIMESTAMPDIFF(MINUTE, initiate_date, finalize_date)
SELECT (TIME_TO_SEC(end_time) - TIME_TO_SEC(start_time))/60 AS `minutes`