How can I define a column as 64bit integer using SQL How can I define a column as 64bit integer using SQL mysql mysql

How can I define a column as 64bit integer using SQL


In MySQL, the BIGINT datatype represents an 8 byte (64-bit) integer. It can be SIGNED or UNSIGNED which permits (or prevents) negative numbers in the column.

You can read more about all variants of MySQL integer data types here. The column attributes are discussed here.


I assume you are using Sql Server.You want to use a

bigint - signed 64-bit.