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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top