ฉันลองใช้ด้วยวิธีที่แตกต่างกันและประสิทธิภาพที่ดีที่สุดที่ฉันพบคือคำถามง่ายๆนี้:
select a.id+1 gapIni
,(select x.id-1 from arrc_vouchers x where x.id>a.id+1 limit 1) gapEnd
from arrc_vouchers a
left join arrc_vouchers b on b.id=a.id+1
where b.id is null
order by 1
;
... เหลืออีกหนึ่งอันเพื่อตรวจสอบว่ามีIDถัดไปหรือไม่หากไม่พบถัดไปจากนั้นเคียวรีย่อยจะค้นหา id ถัดไปที่มีอยู่เพื่อค้นหาจุดสิ้นสุดของช่องว่าง ฉันทำเพราะแบบสอบถามที่มีเท่ากับ (=) มีประสิทธิภาพดีกว่าตัวดำเนินการมากกว่า (>)
การใช้sqlfiddleจะไม่แสดงประสิทธิภาพที่แตกต่างกันของแบบสอบถามอื่น ๆ แต่ในฐานข้อมูลจริงข้อความค้นหาข้างต้นนี้ให้ผลลัพธ์เร็วกว่าคำค้นหาอื่น 3 เท่า
สคีมา:
CREATE TABLE arrc_vouchers (id int primary key)
;
INSERT INTO `arrc_vouchers` (`id`) VALUES (1),(4),(5),(7),(8),(9),(10),(11),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29)
;
ทำตามคำค้นหาทั้งหมดที่ร้องเพื่อเปรียบเทียบประสิทธิภาพ:
select a.id+1 gapIni
,(select x.id-1 from arrc_vouchers x where x.id>a.id+1 limit 1) gapEnd
from arrc_vouchers a
left join arrc_vouchers b on b.id=a.id+1
where b.id is null
order by 1
;
select *, (gapEnd-gapIni) qt
from (
select id+1 gapIni
,(select x.id from arrc_vouchers x where x.id>a.id limit 1) gapEnd
from arrc_vouchers a
order by id
) a where gapEnd <> gapIni
;
select id+1 gapIni
,(select x.id from arrc_vouchers x where x.id>a.id limit 1) gapEnd
#,coalesce((select id from arrc_vouchers x where x.id=a.id+1),(select x.id from arrc_vouchers x where x.id>a.id limit 1)) gapEnd
from arrc_vouchers a
where id+1 <> (select x.id from arrc_vouchers x where x.id>a.id limit 1)
order by id
;
select id+1 gapIni
,coalesce((select id from arrc_vouchers x where x.id=a.id+1),(select x.id from arrc_vouchers x where x.id>a.id limit 1)) gapEnd
from arrc_vouchers a
order by id
;
select id+1 gapIni
,coalesce((select id from arrc_vouchers x where x.id=a.id+1),concat('*** GAT *** ',(select x.id from arrc_vouchers x where x.id>a.id limit 1))) gapEnd
from arrc_vouchers a
order by id
;
บางทีมันอาจช่วยใครบางคนและมีประโยชน์
คุณสามารถดูและทดสอบการสืบค้นของฉันโดยใช้sqlfiddleนี้:
http://sqlfiddle.com/#!9/6bdca7/1