What datatype should be used for storing phone numbers in SQL Server 2005?

前端 未结 16 2037
情话喂你
情话喂你 2020-11-28 05:29

I need to store phone numbers in a table. Please suggest which datatype should I use? Wait. Please read on before you hit reply..

This field needs

16条回答
  •  春和景丽
    2020-11-28 05:52

    SQL Server 2005 is pretty well optimized for substring queries for text in indexed varchar fields. For 2005 they introduced new statistics to the string summary for index fields. This helps significantly with full text searching.

提交回复
热议问题