I'm trying to convert a query from access to sql server
UPDATE [Shipments]
SET [Shipments].[TCM Route Id] = LTrim([sfpostal/zip code]) & 'to' & LTrim([st postal/zip code])
FROM [Shipments]
WHERE ((([Shipments].[Route Id]) Is Null Or ([Shipments].[Route Id]) Like Null));
this code works fine in access but will not run in sql server. I'm at a loss.
UPDATE [Shipments]
SET [Shipments].[TCM Route Id] = LTrim([sfpostal/zip code]) & 'to' & LTrim([st postal/zip code])
FROM [Shipments]
WHERE ((([Shipments].[Route Id]) Is Null Or ([Shipments].[Route Id]) Like Null));
this code works fine in access but will not run in sql server. I'm at a loss.
Comment