In trying to create a SQL database that can be queried within java, but I'm not sure how to structure it. Here are my categories: 1. State 2. Cites within each state 3. Venues within each city 4. Specifics about each venue
This might seem simple to some, but I am concerned with the amount of information that will be located in category #4, since that category alone could house the most data. The most important part of this is that I would of course need to query this information in category #4 and return the information. Is it common practice to have a category with a lot of information in it or do I need to break down category #4 even further? Also, another issue I am coming across is that I am using java to create arrays or arrayLists for all this info and I don't know how to get the data from the arrays to mysql. Any info is appreciated.