RexJacobus
Programmer
I have a table full of item numbers. I try to condense the table using the following query SQL
UPDATE tbl2009Sales SET tbl2009Sales.Item = "PN"
WHERE (((tbl2009Sales.Item) Like "PN*"));
This is the SQL generated by the design wizard but it looks like good code to me. It should, in theory take all PN150, PNJ150, PN303, and PNN303 and have the field simply say PN.
But when I run the query nothing happens. No msg, no update, nothing.
Any ideas what is going wrong?
thanks,
Rex
UPDATE tbl2009Sales SET tbl2009Sales.Item = "PN"
WHERE (((tbl2009Sales.Item) Like "PN*"));
This is the SQL generated by the design wizard but it looks like good code to me. It should, in theory take all PN150, PNJ150, PN303, and PNN303 and have the field simply say PN.
But when I run the query nothing happens. No msg, no update, nothing.
Any ideas what is going wrong?
thanks,
Rex