MySQL Performance: Single table or multiple tables

后端 未结 4 1840
星月不相逢
星月不相逢 2021-01-06 08:35

I have a 8 sets of data of about 30,000 rows for each set, the data is the same structure just for different languages.

The front end of the site will get relatively

4条回答
  •  死守一世寂寞
    2021-01-06 08:49

    I would go with single table design. Seek time, with proper index, should be exactly the same, no matter how "wide" table is.

    Apart from performance issues, this will simplify design and relations with other tables (foreign keys etc).

提交回复
热议问题