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

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -