List of standard lengths for database fields

后端 未结 13 1765
日久生厌
日久生厌 2020-12-02 03:30

I\'m designing a database table and once again asking myself the same stupid question: How long should the firstname field be?

Does anyone have a li

13条回答
  •  春和景丽
    2020-12-02 04:00

    +------------+---------------+---------------------------------+
    |   Field    | Length (Char) |           Description           |
    +------------+---------------+---------------------------------+
    |firstname   | 35            |                                 |
    |lastname    | 35            |                                 |
    |email       | 255           |                                 |
    |url         | 60+           | According to server and browser |
    |city        | 45            |                                 |
    |address     | 90            |                                 |
    +------------+---------------+---------------------------------+
    

    Edit: Added some spacing

提交回复
热议问题