I am transferring queries from MS Access to my new SQL server and I am getting this error on what seems to be one of the more simple comparisons within my query.
"...
..."
The error is:
Msg 156, Level 15, State 1, Line 5
Incorrect syntax near the keyword 'IS'.
The error refers the the red portion above.
This query ran without errors in access, but it seems the IS NULL comparison is causing problems in SQL Server. Thanks for any help.
"...
Code:
[COLOR=red]IIf((Addresses.Company IS NULL OR Addresses.Company="")[/color red], Addresses.FirstName & Trim(IIf(Addresses.Initial IS NULL, "", " " & Addresses.Initial)) & " " & Addresses.LastName, Addresses.Company) AS CompanyOrName,
..."
The error is:
Msg 156, Level 15, State 1, Line 5
Incorrect syntax near the keyword 'IS'.
The error refers the the red portion above.
This query ran without errors in access, but it seems the IS NULL comparison is causing problems in SQL Server. Thanks for any help.