update table with the word Null



I am trying to update a table by putting the word "Null" in the all the fields that contain a blank in the floorplan column.
Is this right?

UPDATE Projects (floorplan)
SET floorplan = 'Null'
WHERE floorplan = ''''

Thanks
Joe T

.



Relevant Pages

  • Re: update table with the word Null
    ... Joe T ... Null values are different from empty (zero-length) strings. ... the fields that contain a blank in the floorplan column. ...
    (microsoft.public.scripting.vbscript)
  • Re: update table with the word Null
    ... UPDATE Projects (floorplan) ... SET floorplan = 'Null' ... Please reply to the newsgroup. ...
    (microsoft.public.scripting.vbscript)
  • Re: update table with the word Null
    ... the fields that contain a blank in the floorplan column. ... SET floorplan = 'Null' ... Why haven't you tried this in a test database? ... Please reply to the newsgroup. ...
    (microsoft.public.scripting.vbscript)