문제

I have a rating system that ranges from -1 to 5 through 0.

So i need to store the following values

-1
0
1
2
3
4
5

Which is the best data type considering i want to fetch a total count of each value (not sum) ?

도움이 되었습니까?

해결책

I'd go with TINYINT, documented here. It takes 1 byte of storage and its range is -128 to 127.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top