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

MySQL:pilih 5 baris sebelum dan sesudah baris tertentu

Menggunakan union all dan subqueries untuk membatasi catatan harus melakukannya:

select * from  users where id = 5
union all (
  select * from users 
  where score <  (select score from users where id = 5) 
  order by score desc limit 2
) 
union all (
  select * from users 
  where score > (select score from users where id = 5) 
  order by score asc limit 2
) 
order by score

Contoh SQL Fiddle

Sunting:Saya pikir metode yang lebih baik adalah memberi nomor baris sesuai dengan skor dan kemudian memilih baris dengan angka -2 dan +2 dari baris id 5:

select id, name, score 
from (select 
      t.*, @rownum1 := @rownum1 + 1 as rank
      from users t, (select @rownum1 := 0) r
      order by score
     ) a,
     (select rank from (
        select t.*, 
        @rownum := @rownum + 1 as rank
        from users t, (select @rownum := 0) r
        order by score
     ) t
      where id = 5
   ) b
where b.rank between a.rank -2 and a.rank+2
order by score;    

Contoh SQL Fiddle



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PHP &mySQL - ditulis sebagai «

  2. MySQL:Mengetik NULL ke 0

  3. Isi otomatis negara dan kota dari kode pos, dan sebaliknya

  4. Gagal memuat kelas driver com.mysql.jdbc.Driver

  5. Mengekstrak Teks antara sub string di MySQL