Avoid storing purely numeric IDs as character data. Use integer or numeric IDs whenever possible to:
Save storage space on the data pages
Make index entries more compact
Improve performance, since internal comparisons are faster
Index entries on varchar columns require more overhead than entries on char columns. For short index keys, especially those with little variation in length in the column data, use char for more compact index entries.