Hi
I have query like below
select * from fileinfo1
where (CASE WHEN :P106_FILE_TYPE='ALL' THEN file_type IN (1, 2, 11, 12, 21, 22, 81, 82) ELSE :P106_FILE_TYPE END);
when i execute this query its giving me error like below. 'Missing Expression' on IN cluase.
can't we use IN cluase in case when ,or other way solution.
please help.