Whoops, I meant Location.Description
We have quite a few locations with "Village" as the description that I wanted to pull out.
This is the SQL I'm using (which doesn't do what I expect):
SELECT LOCATION_KEY FROM LOCATION
WHERE LOCATION.DESCRIPTION LIKE 'Village'
Whereas this does (and gives me more than I want):
SELECT LOCATION_KEY FROM LOCATION
WHERE LOCATION.DESCRIPTION LIKE '%Village%'
But this does seem to work:
SELECT LOCATION_KEY FROM LOCATION
WHERE LOCATION.DESCRIPTION LIKE 'Watsonian Vice-county'
I'm wondering if there are some RTF characters in their or something?
Charlie Barnes
Information Officer
Greater Lincolnshire Nature Partnership