Between Operator - Latest

Spectrum Spatial Guide

Product type
Software
Portfolio
Locate
Product family
Spectrumâ„¢ software
Product
Spectrumâ„¢ software > Spatial > Spectrum Spatial
Version
Latest
ft:locale
en-US
Product name
Spectrum Technology Platform
ft:title
Spectrum Spatial Guide
Copyright
2025
First publish date
2007
ft:lastEdition
2025-03-07
ft:lastPublication
2025-03-07T10:28:48.112000

Between is an operator returns true if the numeric or date values fall within the range.

Example
SELECT city FROM table WHERE pop Between 100000 AND 200000

If the data source provider supports Between, the entire query is delegated to the data source provider.

If the data source provider does not support Between, part of the query is delegated, as follows:

SELECT city, pop FROM table

Spectrum Spatial executes the entire query, using the results from the data source provider:

SELECT city FROM <results from the delegation> WHERE pop Between 100000 AND 200000