Which SQL query string or function could I use to filter "zero" values from a dataset and change them to "null" values?
I tried to run a query to filter the "zero" values in a dataset and change them to "null" values, but I couldn't.
Which SQL query string or function could I use to filter "zero" values from a dataset and change them to "null" values?
I tried to run a query to filter the "zero" values in a dataset and change them to "null" values, but I couldn't.
Copyright © 2021 Jogjafile Inc.
You can use
nullifwhich returns null if both values match, otherwise it returns the first value.nullifis specific to your problem. More generically you'd use acase.Demonstration.