About 452,000 results
Open links in new tab
  1. Should you choose the MONEY or DECIMAL(x,y) datatypes in SQL …

    Working on customer implementations, we found some interesting performance numbers concerning the money data type. For example, when Analysis Services was set to the …

  2. What is the data type for Currency in SQL Server?

    Sep 10, 2015 · What is the data type to the currency value in SQL Server. e.g: I want to store $11.23. Can I use money type and addtionally will it store the $ symbol?

  3. Which datatype of C# is equivalent to money in SQL Server?

    Jul 21, 2017 · Closed 8 years ago. I am working on a project in ASP.NET MVC. I started in the middle of the project and so I got stuck in this. The data type of a column in SQL Server is …

  4. Best data type to store money values in MySQL - Stack Overflow

    Oct 23, 2012 · I want to store many records in a MySQL database. All of them contains money values. But I don't know how many digits will be inserted for each one. Which data type do I …

  5. SQL Datatype to use when inserting money - Stack Overflow

    Mar 12, 2015 · There is no existing money datatype. If you are looking for something similar to SQL-Server small money type, you want to use a Number(10,4) and then format the number.

  6. sql - Which datatype should be used for currency? - Stack Overflow

    Seems like Money type is discouraged as described here. My application needs to store currency, which datatype shall I be using? Numeric, Money or FLOAT?

  7. understanding MONEY () datatype with precision and scale

    The precision and scale of the numeric data types besides decimal are fixed. The scale of MONEY data type is 4 (four decimal digits) More on precision and scale here

  8. Best data type for storing currency values in a MySQL database

    Mar 9, 2016 · What is the best SQL data type for currency values? I'm using MySQL but would prefer a database independent type.

  9. Storing money in a decimal column - what precision and scale?

    In Microsoft® SQL Server™ 2000, monetary data is stored using the money and smallmoney data types. Monetary data can be stored to an accuracy of four decimal places.

  10. Use money type in Entity Framework model first - Stack Overflow

    Jun 16, 2011 · My response is regarding E.F 6.0 After dealing with a similar issue and check with SQL Profiler: Entity framework translates the Decimal variable type as Decimal (18, 2) in SQL. …