sql >> Database teknologi >  >> RDS >> Mysql

Beregn forskellen mellem to datotider

Brug PHP's indbyggede datofunktioner:

<?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. Opret en ny Ruby on Rails-applikation ved hjælp af MySQL i stedet for SQLite

  2. Hvorfor har vi brug for GLOB-klausulen i SQLite?

  3. Gem procedurer i phpMyAdmin

  4. Installer MySQL med ansible på ubuntu