types - Datatype decimal(6, 2) -


If I have a decimal datatype (6, 2) then what would be sample data?

I am using ASP.NET MVC, if there is a difference. Thank you.

You believe that the database type is decimal (6, 2), it means that your The column is set to store 6 places (scale), exactly 2 to the decimal (exact) you should treat it as the decimal CLR type.

A sample will be 1234.56 .

Comments