SQL statements with zero division errors

Source: Internet
Author: User

This situation

Select * from a where c> 0 and (B/C)> 0.5 and (B/C) <0.6

In such a statement, because B and C are two numeric columns, the amount is recorded, and C may be 0, then although we add the condition C> 0, however, the error of division by zero may still occur.

There are two ways to solve this problem. One is to add a function and change C to 1 when C = 0; for example, B/checkdata (c) <0.6

Another method is to use the SQL server option to disable zero-Division Error interruptions and make it null.

SetAnsi_warningsOff
SetArithabortOff
SetArithignoreOn

Select * from a where c> 0 and (B/C)> 0.5 and (B/C) <0.6

If the value of 0 in a record is executed, the division of two numbers is null, and null <0.6 is invalid, as a condition.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.