I don't think so, and I feel stupid for asking, but I need confirmation.
Consider the following code where I would like to control the output of many different spellings of 'Pittsburgh' in different fields:
I receive syntax errors using this code. Is there a method by which I can achieve the same result, without detailing every possible spelling?
Consider the following code where I would like to control the output of many different spellings of 'Pittsburgh' in different fields:
Code:
SELECT Name, Addr1, Addr2,
CASE City
WHEN
Code:
like 'Pitt%'
Code:
THEN ("Pittsburgh")
ELSE (City) END as "City",
State, Zip
FROM tblTableA
I receive syntax errors using this code. Is there a method by which I can achieve the same result, without detailing every possible spelling?