Checking an error value inaccurately

Mistake

if err == sql.ErrNoRows {

}

Fix

if errors.Is(err, sql.ErrNoRows) {

}

References