Jump to content

Creating a varchar column


tomdelonge

Recommended Posts

Is the number in parenthesis (I've always used 255) the number of characters that are allowed to fit? If so, I have a md5 hash to store. Should I just set that column to 32? Thanks...

Yes, the number in parenthesis is the maximum (for varchar or char).  Yes, you can set the column to 32 if it's always going to be a 32 character hash.  If you don't use them all, the varchar is adjusted accordingly.  In char, it just pads the number to your maximum. I wouldn't set it to 255 unless it's going to be relatively close to that number.  If it's something like a phone number, you can set it around 15 (accounting for international and local codes), for a street name, something around 35.

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.