sql >> データベース >  >> RDS >> Mysql

2つの日時の差を計算する

    PHPの組み込みの日付関数を使用します:

    <?php
        $start_time = "Y-m-d H:i:s"; // fill this in with actual time in this format
        $end_time = "Y-m-d H:i:s"; // fill this in with actual time in this format
    
        // both of the above formats are the same as what MySQL stores its
        // DATETIMEs in
    
        $start = new DateTime($start_time);
        $interval = $start->diff(new DateTime($end_time));
    
        echo $interval->format("d \d\a\y\s h \h\o\u\r\s");
    


    1. SQLServerでIF...THENロジックを使用する方法

    2. CSVからMySQLにデータをインポートするにはどうすればよいですか?

    3. Laravel:指定されたキーが長すぎました。キーの最大長は767バイトです

    4. 未定義の関数mysql_connect()