Hi,
Am using oracle 11g.
Am trying to use the below query but it showing the result.
select main_item_code from store_transaction_items where main_item_code in (:pmain);
Am passing the value as '000138','000013' to variable pmain.
The below query is getting the result
select main_item_code from store_transaction_items where main_item_code in ('000138','000013');
Kindly suggest