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
simplified here is what I have:
ID colors
1 white, black, red
2 red, orange
3 blue
Here is what I want to achieve:
ID colors
1 white
1 black
1 red
2 red
2 orange
3 blue
I have an Access 2007 table with some IDs having more than one color. There is no limit to the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.