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

Fungsi Lead dan Lag di Mysql

Anda dapat menggunakan berkorelasi subkueri:

SELECT t1.case_id, t1.assigned_date,
       (SELECT t2.assigned_date
       FROM mytable AS t2
       WHERE t2.case_id = t1.case_id AND
             t2.assigned_date > t1.assigned_date
       ORDER BY t2.assigned_date LIMIT 1) AS next_date,
       (SELECT t2.assigned_date
       FROM mytable AS t2
       WHERE t2.case_id = t1.case_id AND
             t2.assigned_date < t1.assigned_date
       ORDER BY t2.assigned_date DESC LIMIT 1) AS prev_date
FROM mytable AS t1



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Kriteria Hibernasi dengan bergabung sendiri

  2. Regex - temukan nomor tertentu dalam string

  3. Cara mengambil nilai dropdown dari database dan ditampilkan di jsp

  4. MySql.Data.MySqlClient.MySqlException:Batas waktu kedaluwarsa

  5. Bagaimana cara mendapatkan tanggal &waktu saat ini di MySQL?