Schaeffrcc
Technical User
I have a Query that pulls a subset of data into a temp table and then has to look for field that contain a Char. it looks like below:
UPDATE clients SET clients.client_city = Null
WHERE (((clients.client_city)=" "));
Now I also want this statement or another one to update the field to Null if it contains the " " anywhere in the field I.E. Minn eapolis should be updated to Null.
can anyone help,
Thomas
UPDATE clients SET clients.client_city = Null
WHERE (((clients.client_city)=" "));
Now I also want this statement or another one to update the field to Null if it contains the " " anywhere in the field I.E. Minn eapolis should be updated to Null.
can anyone help,
Thomas