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

前端 未结 10 2094
情歌与酒
情歌与酒 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:35

    Use one database and one table. You will require a table "User" and this table will be linked (Primary--Foreign key) to these table.

提交回复
热议问题