I want to define the new field in a select into statement as integer. However, the NewField ends up as binary. How can I accomplish this?
SELECT ExistingField1, ExistingField2, NewField
INTO NewTable
FROM ExistingTable
I searched a lot but couldn't find a solution yet.
Edit 1: I am performing the SELECT INTO statement from within the Microsoft Access application itself. (it is not a table in Access that points to a SQL Server table)
Edit 2: NewField is created with the SELECT INTO statement. It does not exist in a pre-existing table.