Hi,
You can use Like function to do that , for example
select a.DocDate,a.DocNum,b.ItemCode,b.Dscription,a.DocTotal
from oinv a inner join inv1 b on a.docentry=b.docentry
where b.Dscription like '%b%'
Regards,
Manish
Hi,
You can use Like function to do that , for example
select a.DocDate,a.DocNum,b.ItemCode,b.Dscription,a.DocTotal
from oinv a inner join inv1 b on a.docentry=b.docentry
where b.Dscription like '%b%'
Regards,
Manish