Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Hitung perbedaan antara dua datetime

Gunakan fungsi tanggal bawaan 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Bagaimana Fungsi TRIM() Bekerja di MySQL

  2. session_start Melempar Kesalahan Fatal

  3. Perbarui Semua Baris di Basis Data dengan nilai hash

  4. cara mendapatkan posisi baris yang diurutkan menggunakan mysql dan php

  5. Meniru klausa MySQL LIMIT di Microsoft SQL Server 2000