Create a new table. select int or smallint for the field type.

Source: Internet
Author: User
Create a new table. Should I select int or smallint for the field type? When the length is enough, is the smaller the better? Smallint (4) & nbsp; can this happen? ------ Solution ------------------ when int & nbsp; 4-byte smallint & nbsp; 2 bytes are sufficient, it can occupy less disk space ------ solution ------------------ depends on the requirement. Create a new table. Should I select int or smallint for the field type?

When the length is enough, is the smaller the better?
Can smallint (4) be like this?
------ Solution --------------------
Int 4 bytes
Smallint 2 bytes
Insufficient disk space

------ Solution --------------------
Depends on the requirement.
If each type has a range, you need to check whether the range is exceeded.
Int
Integer data (all numbers) from-2 ^ 31 [31 power] (-2,147,483,648) to 2 ^ 31-1 (2,147,483,647 ). 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 byte.

Bigint
Integer data from-2 ^ 63 (-9223372036854775808) to 2 ^ 63-1 (9223372036854775807) (all numbers ). The storage size is 8 bytes.
------ Solution --------------------
For the id, the unsigned int is enough.

Contact Us

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

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.