Create a new table, field type trade-offs int or smallint
Source: Internet
Author: User
Create a new table, field type select int or smallint?
is the back length as small as possible in the case of enough?
smallint (4) Can you do that?
------Solution--------------------
int 4 bytes
SmallInt 2 bytes
Take up less hard disk space when you are in enough condition
------Solution--------------------
Look at the demand.
Each type has a range, and you need to see if the use will go out of scope to determine.
Int
Integer data from -2^31 "31" (-2,147,483,648) to 2^31-1 (2,147,483,647) (all numbers). The storage size is 4 bytes.
smallint
Integer data from -2^15 (-32,768) to 2^15-1 (32,767). The storage size is 2 bytes.
tinyint
Integer data from 0 to 255. The storage size is 1 bytes.
bigint
Integer data (all numbers) from -2^63 (-9223372036854775808) to 2^63-1 (9223372036854775807). The storage size is 8 bytes.
------Solution--------------------
for ID, unsigned int is sufficient.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service