Specifically, I'm building an text-based RPG Application, but the question is this: what is the difference between using arrays and storing values separately.
Normally, If you want to get your 10th Monster, you say select 10
but storing that number 10 is the problem.
Should I store the numbers in an array so when they select 10
it selects the 10th element in the array OR store numbers in a different table so when they select 10
it checks for the column with number 10 and which it's owner ID = the selectors' ID.