Replace Null In Text Field

Z

zyus

I hv this NPLFLG field with Y, N and null.

How to replace null to N in update query

Thanx
 
J

John W. Vinson

I hv this NPLFLG field with Y, N and null.

How to replace null to N in update query

Thanx

Use a criterion of

IS NULL

and update to "N".

The IS NULL syntax is specific - NULL won't work, "NULL" won't work.
 
Top