That's not really the best partitioning column. What you want is to partition the table so that queries is only fetching or inserting data to and from one partition at a time, if possible. For example, If you want to partition a sales table, the date column would normally be a good choice. Most updates, inserts and queries would be done on the current year partition.
List of common misconceptions