I have a query that sets a field to 0 if some conditions are met. I've been asked to change this to "" instead because they can not have 0 in that field. The field is a number field so I get an type conversion error when I use a query like this
UPDATE TableA INNER JOIN TableB ON TableA.STULID = TableB.STUID SET TableA.USERNo3 = ""
WHERE (((TableB.CODE)>=" "))
Is there any way to do this in access.
Thanks for any ideas.
J
UPDATE TableA INNER JOIN TableB ON TableA.STULID = TableB.STUID SET TableA.USERNo3 = ""
WHERE (((TableB.CODE)>=" "))
Is there any way to do this in access.
Thanks for any ideas.
J