GeoLocations
Provides the display name for a given geo Id, or a set of geo Ids.
Table Specific Information
To use this view, the Id column must be specified in the criteria.
Select
For The Id column, the = operator is fully supported server-side. The IN operator is partially supported server-side and partially client-side. For example:SELECT * FROM GeoLocations WHERE Id = '123456';
SELECT * FROM GeoLocations WHERE Id IN ('123456', '234567');
The rest of the query is processed client-side.
Columns
| Name | Type | References | Description |
| Id [KEY] | String | Identifier for the location. | |
| Name | String | The name of the location. | |
| LocaleCountry | String | An uppercase two-letter country code as defined by ISO-3166. | |
| LocaleLanguage | String | A lowercase two-letter language code as defined by ISO-639. |