Link to home
Create AccountLog in
Avatar of tommym121
tommym121Flag for Canada

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?
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

can we see your query?

you should run a SELECT statement using the same conditions you already adding something like:

WHERE/AND (YourField IS NULL OR YourOtherField IS NULL ...)
SOLUTION
Avatar of EugeneZ
EugeneZ
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER CERTIFIED SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Avatar of tommym121

ASKER

Thanks