Home > Article > Backend Development > What is the design idea of user portrait database?
We want to build a database for user portrait analysis. The main information content is the user's personal information, purchase order information, order transaction volume, etc.
Now I want to export this data, re-store it in the database, and do some portrait analysis. However, if the data amount of hundreds of thousands is placed in one table, the response will be too slow. However, if it is stored in multiple data tables according to the product type, , the associated query requires splicing a lot of fields.
I am just getting started, and my idea is too simple. Could you please give me some advice on database storage ideas