What is the best way to store a money value in the database?
问题 I need to store a couple of money related fields in the database but I'm not sure which data type to use between money and decimal . 回答1: Decimal and money ought to be pretty reliable. What i can assure you (from painful personal experience from inherited applications) is DO NOT use float! 回答2: I always use Decimal; never used MONEY before. Recently, I found an article regarding decimal versus money data type in Sql server that you might find interesting: Money vs Decimal It also seems that