I want to create a new table called MyTable1 from the table MyTable covering only the dates from 31 march 2005 to 18 april 2005
I am not quite certain how to create the new table,i know that i could use INSERT INTO in the following way:
Public Function Dummy()
Dim SQL As String
SQL = ” INSERT INTO MyTable1 SELECT * FROM MyTable WHERE (((MyTable.orderdate) Between #3/31/2005# And #4/18/2005#))”
CurrentDb.Execute SQL
End Function
However the above function does not make a new table,it only appends.What is the right way to make a new table only for the dates given?