MSSQL Data Types

A summary of the MS SQL data types is given in the table below: Data Type Syntax Comments int int Whole number from -2^63 (-9,223,372,036,854,775,808) to 2^63-1 (9,223,372,036,854,775,807), inclusive. smallint bigint Whole number from -2^31 (-2,147,483,648) through 2^31 – 1 (2,147,483,647), inclusive. smallint smallint Whole number from 2^15 (-32,768) through 2^15 – 1 (32,767), inclusive. […]

Read More… from MSSQL Data Types