About 6,380,000 results
Open links in new tab
  1. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · What are the differences between numeric, float and decimal datatypes and which should be used in which situations? For any kind of financial transaction (e.g. for salary field), which one is …

  2. Difference between float and decimal data type - Stack Overflow

    Jan 9, 2016 · What difference does it make when I use float and decimal data types in MySQL?. When should I use which?

  3. What's difference between float, double and decimal in sql?

    Oct 8, 2023 · What's difference between float, double and decimal in sql? [duplicate] Asked 2 years, 2 months ago Modified 2 years, 2 months ago Viewed 8k times

  4. MySQL: What's the difference between float and double?

    Jan 29, 2010 · Checking in the new database structure I saw that someone changed a field from float to double. Wondering why, I checked the mysql documentation, but honestly didn't understand what the …

  5. Why is a SQL float different from a C# float - Stack Overflow

    Oct 14, 2015 · The float in Microsoft SQL Server is equivalent to a Double in C#. The reason for this is that a floating-point number can only approximate a decimal number, the precision of a floating-point …

  6. .net - C# Equivalent of SQL Server DataTypes - Stack Overflow

    For the following SQL Server datatypes, what would be the corresponding datatype in C#? Exact Numerics bigint numeric bit smallint decimal smallmoney int tinyint money Approximate Numerics float...

  7. sql - Convert INT to FLOAT - Stack Overflow

    In this case the order of precedence is in your favour, and you get a float on both sides, and a float as a result of the +. But SUM(aFloatField) + 0 does not yield an INT, because the 0 is being implicitly cast …

  8. mysql - How to represent float values in SQL - Stack Overflow

    Apr 28, 2019 · How to represent float values in SQL Asked 6 years, 7 months ago Modified 6 years, 7 months ago Viewed 22k times

  9. How to display two digits after decimal point in SQL Server

    Nov 21, 2013 · I have table which has a column of float data type in SQL Server I want to return my float datatype column value with 2 decimal places. for ex: if i insert 12.3,it should return 12.30 if i insert...

  10. Rounding off to two decimal places in SQL - Stack Overflow

    I need to convert minutes to hours, rounded off to two decimal places. I also need to display only up to two numbers after the decimal point. So if I have minutes as 650, then hours should be 10.83...