When I run the following query on a table on SQL Server:
select [E-Mail]
from NST_2017_PROD.dbo.[VCS PROD$Mitglied]
where [E-Mail] is not null
I get:
itgenclr121
Invalid column name ‘e-mail’.
Es ist ein unbekannter Fehler aufgetreten.
However, when I remove the where
-clause it works fine.
How can I fix this?