how do I include a where clause in the sql 'insert into' statement:
strSql = "Insert into parts (ID, part_number) values (" & ID & ", '" & strpart(i) & "')"
the where clause I want to include is
str_part <> "A" and str_part <> "B" and str_part is not null
thanks in advance
maggsz
strSql = "Insert into parts (ID, part_number) values (" & ID & ", '" & strpart(i) & "')"
the where clause I want to include is
str_part <> "A" and str_part <> "B" and str_part is not null
thanks in advance
maggsz