To make it short, I need help making a nice DB Schema, and I'm not well versed in the way of databases.
I can give you a sample of the data I want to be storing, in a json format.
"items": [
{
"defindex": 45,
"level": 10,
"quality": 6,
"quantity": 1,
},
{
"defindex": 348,
"level": 10,
"quality": 6,
"quantity": 1,
},
There would be many more of these though, up to 1000, all attached to an identifying number, so I could say "5162562 has these items". However, I also want to be able to the search the database for "defindex" = 45, and then get "5162562", or all identifying numbers that have a "defindex" = 45 in there items stored.
There will be a large magnitude of data stored, so I'm wondering too what DB to use, MySQL?
Thank you so much, I'm new to SQL databases, but not to programming, so I'll hopefully be able to understand.
-Billy