Is there any difference between DECIMAL and NUMERIC data types in SQL Server?
When should I use DECIMAL and when NUMERIC?
|
Is there any difference between DECIMAL and NUMERIC data types in SQL Server? When should I use DECIMAL and when NUMERIC?
| ||||
|
feedback
|
|
The are the same. Numeric is functionally equivalent to decimal. MSDN: decimal and numeric | |||||||||
feedback
|
|
To my knowledge there is no difference between NUMERIC and DECIMAL data types. They are synonymous to each other and either one can be used. DECIMAL and NUMERIC data types are numeric data types with fixed precision and scale. Edit: Speaking to a few collegues maybe its has something to do with DECIMAL being the ANSI SQL standard and NUMERIC being one Mircosoft prefers as its more commonly found in programming languages. ...Maybe ;) | ||||
|
feedback
|
|
This is what then SQL2003 standard (ยง6.1 Data Types) says about the two:
| |||||||
feedback
|