Help with database design for personal project
Briefly

The JSON data comprises a list of locations in a county-town format, and car specifications including make, model, transmission types, fuel types, colors, and retail prices.
For effective database design, each aspect of the JSON data needs to be normalized; creating tables for locations, car details, and potentially their respective relationships will reduce redundancy.
Consider implementing foreign keys in your relational database schema to connect tables. For instance, linking a town to its specific county enhances data integrity.
Utilize indexing on columns that are frequently queried, such as mileage and make/model of cars. This will help optimize the database performance during filtering operations.
Read at SitePoint Forums | Web Development & Design Community
[
|
]