I want the below query to pick up all the records when the user passes in 'All'.
SELECT ROWID, item_desc, item_id, item_val, item_type, sku_id
FROM ss_item_master
WHERE item_type in DECODE (:1, 'DM', 'D', 'Store', 'S','All',...)
How can the above decode be modified to do that?
Thanks,
Chiru