I’ve read about nullif, but haven’t been able to put together a SELECT statement to use it properly:
Select (num/total) as percent ...
If total is 0, I want to return Null. How do I revise the statement?
if I say
select (num/nullif(total, 0)) as percent ...
what does it mean to divide by Null?
You could use
CASE: