简体   繁体   中英

mysql which table is faster: with more rows or columns?

What of this mysql tables better for usage in mysql SELECT(if result of data > 10 000 rows) and for while(result of data)

Example:

this:

id | cost 1 | cost 2 | cost 3 | cost 4 | cost 5 |
 1 |  10    |  11    |   12   |  13    |    14  |

or this:

id | cost | costNumber
 1 |  10  |      1
 2 |  11  |      2
 3 |  12  |      3
 4 |  13  |      4
 5 |  14  |      5

Who know or tested, help ples!

以我的经验,第二张桌子总是更好。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM