What would be a suitable data type for storing phone numbers in SQL Server 2005?

Possible Duplicate:
What data type should you use to store phone numbers in SQL Server 2005?

There are various data types that I can choose from, like varchar or bigint or decimal or money, but which may be the best in every way.

+2


a source to share


1 answer


VARCHAR - A telephone number is a very geographically specific data item and can usually contain brackets, hyphens or letters, as well as numeric digits.



0


a source







All Articles