E
EAB1977
Hello. I need to create a query that will take off the last character
if it is a letter.
For example, our database has a unique identifer for each mold of
products. Well, some of these molds were duplicated by using a A, B, C,
and so on. What I need to do is see how many of these molds have a
letter at the end.
Here is my query now:
SELECT Mold0EPS.ProductCode, Mold0EPS.MoldID
FROM Mold0EPS
WHERE (((Mold0EPS.MoldID) Like "*A")) OR (((Mold0EPS.MoldID) Like
"*B")) OR (((Mold0EPS.MoldID) Like "*C"));
Is this the correct way? Or is there a better way?
if it is a letter.
For example, our database has a unique identifer for each mold of
products. Well, some of these molds were duplicated by using a A, B, C,
and so on. What I need to do is see how many of these molds have a
letter at the end.
Here is my query now:
SELECT Mold0EPS.ProductCode, Mold0EPS.MoldID
FROM Mold0EPS
WHERE (((Mold0EPS.MoldID) Like "*A")) OR (((Mold0EPS.MoldID) Like
"*B")) OR (((Mold0EPS.MoldID) Like "*C"));
Is this the correct way? Or is there a better way?