tommym121
asked on
sql - How to debug
I am running a script it give rise to this warning
Warning: Null value is eliminated by an aggregate or other SET operation.
How do I debug easily to find out which record causing it. I hae a lot of records. Do I need to try one records at a time?
Warning: Null value is eliminated by an aggregate or other SET operation.
How do I debug easily to find out which record causing it. I hae a lot of records. Do I need to try one records at a time?
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks
you should run a SELECT statement using the same conditions you already adding something like:
WHERE/AND (YourField IS NULL OR YourOtherField IS NULL ...)