I am copying data from a table created by an Excel spreadsheet import.
Here is what I am doing to move the data from the import table to the actual table:
INSERT INTO TableName ([Column1], [Column2])
SELECT [Column1], [Column2] FROM [Sheet1$]
After I execute this under column 1 I get records like:
5.31752e+007 when the actual value of that record (from the table I am importing from) is 5046610163
Any ideas?
intordecimalrather than float. Not sure how5046610163ends up as5.31752e+007though. – Martin Smith Aug 31 '11 at 20:59