I have a form that creates a table for some data from another table to be filtered into. This is the quick snippet i use :-
strSQL = "CREATE TABLE FilterStationTimes (Id INTEGER, Time LONG, Duration LONG, dTime LONG);"
DoCmd.RunSQL strSQL
for some reason, i get an error 'Syntax error in field definition', but i can't see what i've done wrong
TIA
strSQL = "CREATE TABLE FilterStationTimes (Id INTEGER, Time LONG, Duration LONG, dTime LONG);"
DoCmd.RunSQL strSQL
for some reason, i get an error 'Syntax error in field definition', but i can't see what i've done wrong
TIA