divide by zero error in sql
#Dividing a/b
SELECT a / NULLIF(b, 0)
FROM t
divide by zero error in sql
#Dividing a/b
SELECT a / NULLIF(b, 0)
FROM t
divide by zero error in sql
SELECT club_id,
males,
females,
males/NULLIF(females, 0) AS ratio
FROM school_clubs;
replace divide by zero error with 0 in sql
#Replace the result of divide by zero with 0
SELECT COALESCE(dividend / NULLIF(divisor,0), 0)
FROM sometable
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us