sql query to replace a blank cell with any text in access 2007 column

Posted by silverkid on Stack Overflow See other posts from Stack Overflow or by silverkid
Published on 2010-03-12T06:23:29Z Indexed on 2010/03/12 6:27 UTC
Read the original article Hit count: 182

Filed under:
|

I have an access table which has some cells as blank ( no data ) in a particular column.

how i write an sql query to replace a blank cell with any text in access 2007 column

any help appreciated.

i have already tried the sql query

update tableA set colA = 'abc' where ISNULL(colA);

It updates 0 rows.

© Stack Overflow or respective owner

Related posts about ms-access

Related posts about sql