The results will be exactly the same my friend . There is no difference at all .
check it . But i don't think it will make any difference at all...
check it . But i don't think it will make any difference at all...
SELECT tbl_PackDetail.PackId, tbl_PackDetail.Id, tbl_PackDetail.MfgProductId, tbl_MasterMfg.ProductName, tbl_PackDetail.Description, tbl_PackDetail.Qty, tbl_PackDetail.Remarks
FROM tbl_MasterMfg INNER JOIN tbl_PackDetail ON tbl_MasterMfg.ProductId = tbl_PackDetail.MfgProductId
WHERE (((tbl_PackDetail.PackId)="S09INCFC4C"));
Thanks...
I ave already sent it to you .
Here it is attached again.
Thanks
SELECT tbl_MasterMfg.ProductId, tbl_MasterMfg.ProductName
FROM tbl_CategoryMaster INNER JOIN tbl_MasterMfg ON tbl_CategoryMaster.CategoryId = tbl_MasterMfg.Category
WHERE (((tbl_MasterMfg.TypeName)=[Forms]![frm_PackMaster]![cbo_FilterTypeM]) AND ((tbl_MasterMfg.TypeDesign)=[Forms]![frm_PackMaster]![cbo_FilterSubtypeM]) AND ((tbl_MasterMfg.TypeMaterial)=[Forms]![frm_PackMaster]![cbo_FilterMaterialM]) AND ((tbl_MasterMfg.TypeBrand)=[Forms]![frm_PackMaster]![cbo_FilterBrandM]) AND ((tbl_MasterMfg.TypeFinish)=[Forms]![frm_PackMaster]![cbo_FilterFinishM]) AND ((tbl_CategoryMaster.SerialNo)=[Forms]![frm_PackMaster]![Frame50]));
It will list all the rows of product Name, In this case it will a hell lot harder for user to find the product from 1000 products .
Yes it does.
Obviously it will do it But now how would i select a new product from near 1000 products ????? How do i filter it?