What are the different SQL Server 2008 data types?
I am specifically trying to find the equivalent of a long int.
What are the different SQL Server 2008 data types?
I am specifically trying to find the equivalent of a long int.
SQL Server 2008 Data Types : http://msdn.microsoft.com/en-us/library/ms187752.aspx
Long Int (from VB so 32 Bit / 4 Byte int) is a SQL Int.
long int range (–9,223,372,036,854,775,808 to 9,223,372,036,854,775,807) in sql is bigint(–9,223,372,036,854,775,808 to 9,223,372,036,854,775,807)