SELECT uniprod.orgmstee.org_lvl_number, uniprod.orgmstee.org_name_full, uniprod.prdmstee.prd_lvl_number, uniprod.prdmstee.prd_name_full, TRUNC(SYSDATE-1), uniprod.invbalee.on_hand_qty
FROM uniprod.invbalee invbalee, uniprod.orgmstee orgmstee, uniprod.prdmstee prdmstee
WHERE invbalee.ORG_LVL_CHILD = orgmstee.ORG_LVL_CHILD AND invbalee.PRD_LVL_CHILD = prdmstee.PRD_LVL_CHILD AND ((prdmstee.PRD_LVL_NUMBER=204133))
Hi I have the above code in SQL which seeks data when I run a report trouble is I can only search 1 product at a time I want to lookup more, so 204133 is the product what can I type like a back slash or comma so that I can enter more then 1 product..
Please help