5
Answers

Data Types and Values

Bineesh  VP

Bineesh VP

11y
881
1
Sir, I am a bit confused of the data types and value to be stored in database.

Could you tell me the suitable datatype for the below values:-

1)Phone Number //what happen when use bigint

2)Name code(may have letters and digits)

3) 12/11/2013 ( I am getting error when use DateTime.can use smallDateTime?)


Answers (5)
0
Sanjeeb Lenka

Sanjeeb Lenka

NA 22.1k 1.3m 11y
yes
you can use.
0
Rosi Sreenivasa Reddy

Rosi Sreenivasa Reddy

NA 134 30.1k 11y
hi,
   if u don't mine can say  numeric can be used  or not....
i have a some doubt about that....
0
Sanjeeb Lenka

Sanjeeb Lenka

NA 22.1k 1.3m 11y
hi,

we use numeric to store decimal values.


There is no difference between NUMERIC and DECIMAL data types.  They are synonymous to each other and either one can be used.  DECIMAL/NUMERIC data types are numeric data types with fixed precision and scale.

DECIMAL (p [, s ]) NUMERIC (p [, s ])

In declaring a DECIMAL or NUMERIC data type, p, which is the precision, specifies the maximum total number of decimal digits that can be stored, both to the left and to the right of the decimal point.  The precision must be a value from 1 through the maximum precision of 38.  The s is the scale and it specifies the maximum number of decimal digits that can be stored to the right of the decimal point.  Scale, which defaults to 0 if not specified, must be a value from 0 to the precision value.

The following table specifies the storage size required based on the precision specified for the NUMERIC or DECIMAL data type:

Precision Storage Size
1 - 9 5 bytes
10- 19 9 bytes
20-28 13 bytes
29-38 17 bytes

you can check this link

http://technet.microsoft.com/en-us/library/ms187746.aspx
0
Rosi Sreenivasa Reddy

Rosi Sreenivasa Reddy

NA 134 30.1k 11y
hai sanjeeb,
       can you give
  1)phone number:Numeric

what is your answer?


0
Sanjeeb Lenka

Sanjeeb Lenka

NA 22.1k 1.3m 11y
hi,

use this:

Phone Number: nvarchar(50)( bigint will work but some country mobile no format is different so we use navrchar)
NameCode: nvarchar(50)
date: datetime (but it will take mm/dd/yyyy format)