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

Fungsi jendela Postgres lag() setara permintaan di MySQL

Anda perlu menggunakan variabel untuk meniru fungsionalitas. Lihat halaman ini untuk contoh:

http://www.onlamp.com/pub/a/mysql/2007/04/12/emulating-analytic-aka-ranking-functions-with-mysql.html?page=2

-- Oracle
select DEPTNO, AVG(HIRE_INTERVAL)
   2  from  (select DEPTNO,
   3               HIREDATE - LAG(HIREDATE, 1)
   4                             over (partition by  DEPTNO
   5                                   order by HIREDATE)  HIRE_INTERVAL
   6         from EMPLOYEES)
   7   group by DEPTNO

-- MySQL
select DEPTNO, avg(HIRE_INTERVAL)
       -> from (select DEPTNO,
       ->              if (@dept = DEPTNO,
       ->                     datediff(HIREDATE, @hd) +  least(0, @hd := HIREDATE),
       ->                     NULL + least(0, @dept :=  DEPTNO) + (@hd := NULL))
       ->                                                      HIRE_INTERVAL
       ->        from EMPLOYEES,
       ->            (select (@dept := 0)) as a
       ->        order by DEPTNO, HIREDATE) as b
       -> group by DEPTNO;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Tiba-tiba mencapai batas memori PHP dengan satu permintaan PDO?

  2. while ($row =mysql_fetch_array($result)) - berapa banyak loop yang dilakukan?

  3. Pilihan MySQL Round Robin

  4. Mengelompokkan nilai yang dipisahkan koma pada data umum

  5. Laravel Eloquent Abaikan Casing