Hi,
Try this query:
SELECT T0.ItemCode, T0.ItemName, T2.ListName, T1.Price
FROM OITM T0
JOIN ITM1 T1 ON T1.ItemCode=T0.ItemCode AND T1.PriceList in (1,4)
JOIN OPLN T2 ON T2.ListNum=T1.PriceList
WHERE T0.ItemCode LIKE '[%0]%'
One question per thread. Please post another for the other question.
Thanks,
Gordon