i have table named departments has column named tax_code
nvarchar2
datatype saved value 01,33,E1
when i want to use this value in this code
select id,name from employee
where taxcode in( select tax_code from department)
give me the value
where taxcode in('01,33,E1') this wrong
i want this
where taxcode in('01','33','E1')
regards
above in details i explain