is having millions of tables and millions of rows within them a common practice in MySQL database design?

前端 未结 7 640
死守一世寂寞
死守一世寂寞 2021-01-05 20:27

I am doing database design for an upcoming web app, and I was wondering from anybody profusely using mysql in their current web apps if this sort of design is efficient for

7条回答
  •  甜味超标
    2021-01-05 20:46

    Having millions of rows in a table is perfectly normal and MySQL can handle this easily, as long as you use appropriate indexes.

    Having millions of tables on the other hand seems like a bad design.

提交回复
热议问题