I have a query for which I am giving a list of items as input, the item list contains duplicate values.
select * from ITEM where ITEM_NUMBER in ('15','41', '15','41');
the resulting output contains 2 rows with
ITEM_NUMBER 15
and
41
I want a query, which returns 4 rows with duplicate values.