Is it unreasonable to assign a MySQL database to each user on my site?

前端 未结 10 2088
情歌与酒
情歌与酒 2020-12-03 00:27

I\'m creating a user-based website. For each user, I\'ll need a few MySQL tables to store different types of information (that is, userInfo, quotesSubmitted, and ratesSubmit

10条回答
  •  抹茶落季
    2020-12-03 00:34

    Your design is flawed.. You should constrain the tuples using foreign keys to the correct user, rather than adding new entities for each account.

提交回复
热议问题