sql >> Database >  >> RDS >> Mysql

Bereken het verschil tussen twee datetimes

Gebruik de ingebouwde datumfuncties van 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. JDBC SQLServerException:dit stuurprogramma is niet geconfigureerd voor geïntegreerde verificatie.

  2. Recursieve query in SQL Server

  3. Blobs invoegen in MySql-databases met php

  4. SQL COUNT() voor beginners