Like 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

The Like operator is similar to Between.

Example:

SELECT pop FROM table WHERE state LIKE 'M%'

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

If the data source provider does not support LIKE, only part of the query is delegated:

SELECT state, pop FROM table 

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

SELECT pop FROM <results from the delegation> WHERE state like 'M%'