I have a very simple make table query and creates a table in a separate database. Is it possible to also change the type of field of the first field at the same time?
Specifically, the original table has this field as 'text'. While I would like the new table in the separate database to have this field as a 'number' (single). All the data except one line fits this type and I was going to exclude that line in my where statement as follows:
Specifically, the original table has this field as 'text'. While I would like the new table in the separate database to have this field as a 'number' (single). All the data except one line fits this type and I was going to exclude that line in my where statement as follows:
Code:
SELECT [jcdetail].[jobnum], [jcdetail].[phasenum], [jcdetail].[billqty] INTO jcdetail IN 'C:\Documents and Settings\jbach\Desktop\Jworking.mdb' FROM jcdetail WHERE ((([jcdetail].[jobnum])<>"T2006"));
Comment