A workaround for SQL division operations in MSSQL with a decimal number showing 0 _mssql

Source: Internet
Author: User
Tags mssql

Today in the use of MSSQL SQL Division operations, found that the results have decimal, and the whole division is divided into 0 o'clock, the result is directly displayed as 0, after a test found a solution to share.

Suppose there is a section of SQL division that follows:

Select Field1/field2 from table

Assuming that the result of the operation should be 0.123, but the actual operation in the MSSQL Query Editor directly displayed as 0, then to show its true results, what is the way? The method is to cast the data type of the molecular field1 to the float type, as follows:

Select cast (field1 as float)/field2 from table

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.