Quote:
Originally Posted by ownedbycats
Personally, I used integers for my #chaptercount column.
They take up the same amount of database resources.
Integer column is for numbers. If you think you may want to use arithmetic on the numbers in the future, use Integer.
You can put numbers in a text column, but there it'll be more treated like a string of characters. The main disadvantage is that it may not sort the way you expect.
|
Thanks for the input. I decided to go with integers.