All Questions
Tagged with numeric-precision sql
1 question
7
votes
5
answers
18k
views
Why SQL numeric precision is specified as the number of digits?
I understand that this might be a loaded question.
For example, in Sql Server 2008, doing DECLARE @someNum NUMERIC(10); means that the range of the variable will be limited by 10 digits. In other ...