Paully1999
Programmer
I have a select statement that works fine with ACCESS from ASP but I'm trying to migrate to SQL Server 2000 and I'm getting an error with the folowing statement
SELECT Zip, Search_Id, State, City, Company_Name, WorkType1, banner, bold FROM ContractorsOnly WHERE (WorkType1 = 'C' or WorkType1 = 'B') AND Zip IN ('60007','60101','60107','60126','60148','60153','60155','60160','60164','60171','60181','60185','60186','60187','60188','60193','60513','60515','60525','60534','60561','60563','60565','60656',) ORDER BY Company_Name
It is erroring out at that IN
Any thoughts????
SELECT Zip, Search_Id, State, City, Company_Name, WorkType1, banner, bold FROM ContractorsOnly WHERE (WorkType1 = 'C' or WorkType1 = 'B') AND Zip IN ('60007','60101','60107','60126','60148','60153','60155','60160','60164','60171','60181','60185','60186','60187','60188','60193','60513','60515','60525','60534','60561','60563','60565','60656',) ORDER BY Company_Name
It is erroring out at that IN
Any thoughts????