Kindly help me
I am having a table production which table consists productname, item_code,qty and approx 1000 records in that
there are three type of product_id
p1,p2, p3 ....to p300 product_id is for production consumable
m1, m2,m3 .....to m700 product_id is for maintenance consumable
rest other are for tool consumable products
i want to see only maintenance consumable products by ms access query
how should i do it ? on the basis of product_id
i have already run on sql view
SELECT DISTINCTROW PRODUCTION.Item_code, PRODUCTION.Productname,COUNT( PRODUCTION.Qty),
FROM PRODUCTION
GROUP BY PRODUCTION.Item_code, PRODUCTION.Productname
HAVING ITEM_CODE= "m*";
but it is not solve my problem
kindly help me it is very urgent
I am having a table production which table consists productname, item_code,qty and approx 1000 records in that
there are three type of product_id
p1,p2, p3 ....to p300 product_id is for production consumable
m1, m2,m3 .....to m700 product_id is for maintenance consumable
rest other are for tool consumable products
i want to see only maintenance consumable products by ms access query
how should i do it ? on the basis of product_id
i have already run on sql view
SELECT DISTINCTROW PRODUCTION.Item_code, PRODUCTION.Productname,COUNT( PRODUCTION.Qty),
FROM PRODUCTION
GROUP BY PRODUCTION.Item_code, PRODUCTION.Productname
HAVING ITEM_CODE= "m*";
but it is not solve my problem
kindly help me it is very urgent