Replace Null In Text Field

  • Thread starter Thread starter zyus
  • Start date Start date
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.
 
Back
Top