Jump to content

[SOLVED] Limit to ammount of fields in a table?


jordanwb

Recommended Posts

I'm making a website for a friend who is a mortgage broker. He wants me to make an online application page and he showed me a list of fields he wants. There are literally at least 100 fields - about 12 are required (thank god for me), so I was wondering: Would having 100+ fields in a table would lead to any problems?

You could probably normalize it, breaking it these 100 fields into many tables instead of just one huge dump.

 

Look for fields that can easily group together and put them in their own table. For more info: http://en.wikipedia.org/wiki/Database_normalization

 

There's such thing as vertical partitioning. You can split columns into two or more tables with one-to-one relation.

 

Have frequently used columns and fields in one table, and rarely used columns in another. This will let you improve performance a little.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.