我应该在 SQL varchar(length) for phone 中考虑的最长的全球电话号码是多少

我应该在 SQL varchar(length) for phone 中考虑最长的全球电话号码是多少.

What's the longest possible worldwide phone number I should consider in SQL varchar(length) for phone.

注意事项:

  • + 代表国家/地区代码
  • () 表示区号
  • x + 6 个数字用于扩展扩展名(所以使它成为 8 个{空格})
  • 组之间的空格(即在美国电话中 +x xxx xxx xxxx = 3 个空格)
  • 这里是我需要您帮助的地方,我希望它遍布全球

考虑在我现在的特殊情况下,我不需要卡片等号码以国家代码开头并以扩展名结尾,没有传真/电话等评论,也不需要电话卡.

Consider that in my particular case now, I don't need cards etc. number begins with country code and ends with the extension, no Fax/Phone etc. comments, nor calling card stuff needed.

推荐答案

好吧,考虑到 varchar(30) 和 varchar(100) 之间没有开销差异,如果您只在其中存储 20 个字符,那一边倒谨慎起见,只需将其设为 50.

Well considering there's no overhead difference between a varchar(30) and a varchar(100) if you're only storing 20 characters in each, err on the side of caution and just make it 50.

相关文章