views:

104

answers:

2

What are the different SQL Server 2008 data types?

I am specifically trying to find the equivalent of a long int.

+3  A: 

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.

Andrew
A: 

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)

anishmarokey