オプティマイザーによるインデックススキャンに使用できるため、可能な場合は範囲比較を使用するのが好きです。
select inspections.name
from inspections
where inspections.date >= DATE '2010-06-01'
and inspections.date < DATE '2010-07-01'
オプティマイザーによるインデックススキャンに使用できるため、可能な場合は範囲比較を使用するのが好きです。
select inspections.name
from inspections
where inspections.date >= DATE '2010-06-01'
and inspections.date < DATE '2010-07-01'