vote up 1 vote down star
1

I am working on an old database I inherited from my predecessors.

In it, some float fields contains NaN where there should be a null.

The following SQL doesn't work because it doesn't recognize NaN.

UPDATE xxx SET column= null WHERE column=NaN

How can I do this?

flag

75% accept rate

2 Answers

vote up 3 vote down check

Try

UPDATE xxx SET column= null WHERE IsNumeric(column)=0

Then run your select again.

link|flag
vote up 0 vote down

Brilliant, that worked - thanks cmsjr

link|flag
np, my pleasure. – cmsjr Jan 16 at 15:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.